Platformer in OpenGL
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
368 B

5 years ago
  1. function(glmCreateTestGTC NAME)
  2. set(SAMPLE_NAME test-${NAME})
  3. add_executable(${SAMPLE_NAME} ${NAME}.cpp)
  4. add_test(
  5. NAME ${SAMPLE_NAME}
  6. COMMAND $<TARGET_FILE:${SAMPLE_NAME}> )
  7. endfunction()
  8. if(GLM_TEST_ENABLE)
  9. add_subdirectory(bug)
  10. add_subdirectory(core)
  11. add_subdirectory(ext)
  12. add_subdirectory(gtc)
  13. add_subdirectory(gtx)
  14. add_subdirectory(perf)
  15. endif()