cmake: Don't build tests when not testing

This commit is contained in:
Roger Leigh
2014-04-15 10:44:03 +01:00
parent e9ad8f7c18
commit 34bd28e8c6
2 changed files with 14 additions and 10 deletions

View File

@@ -1,10 +1,12 @@
function(glmCreateTestGTC NAME)
set(SAMPLE_NAME test-${NAME})
add_executable(${SAMPLE_NAME} ${NAME}.cpp)
if(GLM_TEST_ENABLE)
set(SAMPLE_NAME test-${NAME})
add_executable(${SAMPLE_NAME} ${NAME}.cpp)
add_test(
NAME ${SAMPLE_NAME}
COMMAND $<TARGET_FILE:${SAMPLE_NAME}> )
add_test(
NAME ${SAMPLE_NAME}
COMMAND $<TARGET_FILE:${SAMPLE_NAME}> )
endif(GLM_TEST_ENABLE)
endfunction()
add_subdirectory(bug)