Lightweight OpenGL 3D Renderer
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Euclid/CMakeLists.txt

23 lines
568 B

cmake_minimum_required(VERSION 3.24.2)
project(Hohmann VERSION 1.0)
file(GLOB SOURCES src/*.cpp headers/*.hpp)
add_executable(Hohmann ${SOURCES})
# GLFW submodule
set(GLFW_BUILD_DOCS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_TESTS OFF CACHE BOOL "" FORCE)
set(GLFW_BUILD_EXAMPLES OFF CACHE BOOL "" FORCE)
add_subdirectory(lib/glfw)
# GLAD
add_subdirectory(lib/glad)
# External headers & sources
file(GLOB EXTERN_SOURCES extern/*)
include_directories(${EXTERN_SOURCES})
link_directories(${EXTERN_SOURCES})
# Linking
target_link_libraries(Hohmann PRIVATE glfw glad)