CMakeLists.txt 320 B

123456789101112131415
  1. function(glmCreateTestGTC NAME)
  2. set(SAMPLE_NAME test-${NAME})
  3. add_executable(${SAMPLE_NAME} ${NAME}.cpp ../test.hpp ../test.cpp)
  4. add_test(
  5. NAME ${SAMPLE_NAME}
  6. COMMAND $<TARGET_FILE:${SAMPLE_NAME}> )
  7. endfunction()
  8. add_subdirectory(bug)
  9. add_subdirectory(core)
  10. add_subdirectory(gtc)
  11. add_subdirectory(gtx)