games101-hw/08/CGL/tests/CMakeLists.txt

17 lines
280 B
CMake
Raw Normal View History

2023-06-19 17:02:04 +08:00
link_libraries(CGL)
include_directories("${PROJECT_SOURCE_DIR}/src")
link_libraries(
glfw ${GLFW_LIBRARIES}
glew ${GLEW_LIBRARIES}
${OPENGL_LIBRARIES}
${FREETYPE_LIBRARIES}
)
# OSD
add_executable(osd osd.cpp)
# Install tests
install(TARGETS osd DESTINATION bin/tests)