Added ConstStringSetTest.cpp, and first test OK!

This commit is contained in:
2024-07-11 01:20:50 +08:00
parent f7a4c8c333
commit b8a11960b4
3 changed files with 172 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
macro(cm_example_project sub_folder project_name)
macro(cm_example_project sub_folder project_name)
target_link_libraries(${project_name} PRIVATE CMCore CMPlatform CMUtil)
if(UNIX)
@@ -47,6 +47,12 @@ cm_example_project("DataType" Size2Test)
add_executable(Uint2HexStrTest datatype/Uint2HexStrTest.cpp)
cm_example_project("DataType" Uint2HexStrTest)
add_executable(ConstStringSetTest datatype/ConstStringSetTest.cpp)
cm_example_project("DataType" ConstStringSetTest)
add_executable(IDNameTest datatype/IDNameTest.cpp)
cm_example_project("DataType" IDNameTest)
####################################################################################################
add_executable(LifetimeTest datatype/LifetimeTest.cpp)