diff --git a/CMakeLists.txt b/CMakeLists.txt index e6845c1..111b671 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -21,6 +21,10 @@ endmacro() add_executable(HalfFloatTest datatype/HalfFloatTest.cpp) cm_example_project("DataType" HalfFloatTest) +add_executable(LifetimeTest datatype/LifetimeTest.cpp) +#cm_example_project("DataType" LifetimeTest) +set_property(TARGET LifetimeTest PROPERTY FOLDER "CM/Examples/DataType") + add_executable(CollectionTest datatype/CollectionTest.cpp) cm_example_project("DataType" CollectionTest) @@ -58,6 +62,9 @@ cm_example_project("DataType" Uint2HexStrTest) add_executable(StackTest datatype/StackTest.cpp) cm_example_project("DataType" StackTest) +add_executable(QueueTest datatype/QueueTest.cpp) +cm_example_project("DataType" QueueTest) + #################################################################################################### add_executable(FixFilenameTest filesystem/FixFilenameTest.cpp)