lol/CMakeLists.txt

40 lines
761 B
CMake
Raw Permalink Normal View History

2021-12-22 23:25:50 +00:00
cmake_minimum_required (VERSION 3.8)
project("lol")
set(CMAKE_CXX_STANDARD 17)
find_package(GLM)
if(NOT GLM_FOUND)
message(STATUS "Could not find GLM on system, including from source instead")
add_subdirectory("vendor/glm")
set(GLM_INCLUDE_DIRS glm)
set(GLM_LIBRARIES glm)
endif()
add_library(lol STATIC
"src/Drawable.cpp"
"src/Transformable.cpp"
"src/Shader.cpp"
"src/VertexArrayObject.cpp"
2021-12-22 23:45:24 +00:00
"vendor/glad/src/glad.c"
2021-12-24 22:33:49 +00:00
"src/Texture.cpp"
"src/Buffer.cpp"
"src/buffers/VertexBuffer.cpp"
"src/buffers/ElementBuffer.cpp"
2021-12-26 18:38:22 +00:00
"src/Image.cpp"
2022-01-14 21:11:27 +00:00
"src/ObjectManager.cpp"
"src/Layer.cpp"
)
2021-12-22 23:25:50 +00:00
target_include_directories(lol PUBLIC
${GLM_INCLUDE_DIRS}
vendor/glad/include
2021-12-24 22:33:49 +00:00
vendor/stbi
2021-12-22 23:25:50 +00:00
include
)
target_link_libraries(lol PUBLIC
${GLM_LIBRARIES}
)