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.
18 lines
411 B
18 lines
411 B
cmake_minimum_required(VERSION 3.24.2)
|
|
|
|
project(Hohmann VERSION 1.0)
|
|
|
|
set(SOURCES src/main.cpp)
|
|
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)
|
|
|
|
# Linking
|
|
target_link_libraries(Hohmann PRIVATE glfw glad)
|
|
|