From 5eeb49c31edaef30ea32d4fd3cce35087316ed12 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Sat, 2 Jun 2018 14:29:49 +0100 Subject: Moving libraries --- libs/glad/CMakeLists.txt | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 libs/glad/CMakeLists.txt (limited to 'libs/glad/CMakeLists.txt') diff --git a/libs/glad/CMakeLists.txt b/libs/glad/CMakeLists.txt new file mode 100644 index 00000000..d7b019b6 --- /dev/null +++ b/libs/glad/CMakeLists.txt @@ -0,0 +1,12 @@ +project(glad) + +set(GLAD_SOURCES + src/glad.c) + +add_library(${PROJECT_NAME} + ${GLAD_SOURCES}) + +target_include_directories(${PROJECT_NAME} + PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}/include) + +target_link_libraries(${PROJECT_NAME}) -- cgit