polyvox/tests/CMakeLists.txt
Matt Williams b3e6e54c1b Add an extremely simple test which checks the size of the volume doesn't
change. This will hopefully also be tracked by the dashboard.
2010-02-24 16:32:36 +00:00

12 lines
299 B
CMake

SET (CTEST_START_WITH_EMPTY_BINARY_DIRECTORY TRUE)
#FIND_PACKAGE(Qt4)
#SET(QT_USE_QTTEST TRUE)
INCLUDE_DIRECTORIES("../library/PolyVoxCore/include")
ADD_EXECUTABLE(checksize checksize.cpp)
TARGET_LINK_LIBRARIES(checksize PolyVoxCore)
ADD_TEST(VolumeSizeTest ${EXECUTABLE_OUTPUT_PATH}/checksize)