39 lines
815 B
CMake
39 lines
815 B
CMake
|
|
# TESTS
|
|
set( TESTS
|
|
SmartVectorTest
|
|
VectorTest
|
|
ObjectFlagsTest
|
|
ObjectParametersTest
|
|
ObjectCopyTest
|
|
StaticInterfaceTest
|
|
CommaInitTest
|
|
# DebugTTreeDumpTest
|
|
BoostTest
|
|
BoostAccumulatorTest
|
|
PropertiesTest
|
|
SignalTest
|
|
SerializeTest
|
|
SerializeDreadDiamondTest
|
|
DreadDiamondParameters
|
|
UuidTest
|
|
TypeIntrospectionTraversal
|
|
OptionsTest
|
|
PingPongTest
|
|
VectorMetaAllocatorTest
|
|
)
|
|
|
|
set(LIBRARIES
|
|
${PACKAGE_LIBPREFIX}Core
|
|
${PACKAGE_LIBPREFIX}Math
|
|
Boost::serialization
|
|
Boost::program_options
|
|
${ROOT_LIBRARIES}
|
|
)
|
|
uLib_add_tests(Core)
|
|
|
|
if(USE_CUDA)
|
|
set_source_files_properties(VectorMetaAllocatorTest.cpp PROPERTIES LANGUAGE CUDA)
|
|
endif()
|
|
|