CMakeLists.txt 447 B

123456789101112131415161718
  1. set(SRCS
  2. glad.cpp
  3. tests.cpp
  4. core/file_sys/path_parser.cpp
  5. )
  6. set(HEADERS
  7. )
  8. create_directory_groups(${SRCS} ${HEADERS})
  9. include_directories(../../externals/catch/single_include/)
  10. add_executable(tests ${SRCS} ${HEADERS})
  11. target_link_libraries(tests core video_core audio_core common)
  12. target_link_libraries(tests ${PLATFORM_LIBRARIES})
  13. add_test(NAME tests COMMAND $<TARGET_FILE:tests>)