mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
20 lines
368 B
CMake
20 lines
368 B
CMake
function(glmCreateTestGTC NAME)
|
|
set(SAMPLE_NAME test-${NAME})
|
|
add_executable(${SAMPLE_NAME} ${NAME}.cpp)
|
|
|
|
add_test(
|
|
NAME ${SAMPLE_NAME}
|
|
COMMAND $<TARGET_FILE:${SAMPLE_NAME}> )
|
|
endfunction()
|
|
|
|
if(GLM_TEST_ENABLE)
|
|
add_subdirectory(bug)
|
|
add_subdirectory(core)
|
|
add_subdirectory(ext)
|
|
add_subdirectory(gtc)
|
|
add_subdirectory(gtx)
|
|
add_subdirectory(perf)
|
|
endif()
|
|
|
|
|