GLFramework/example/CMakeLists.txt

15 lines
251 B
CMake
Raw Normal View History

2020-08-29 14:44:06 +00:00
add_executable(example
"main.cpp"
2020-08-29 15:51:22 +00:00
"MyWindow.hpp")
2020-08-29 14:44:06 +00:00
target_include_directories(example PRIVATE
${CMAKE_SOURCE_DIR}/GLFramework/include
${OPENGL_INCLUDE_DIRS}
glfw
${CMAKE_SOURCE_DIR}/vendor/include
)
target_link_libraries(example
GLFramework
)