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.
17 lines
387 B
17 lines
387 B
cmake_minimum_required(VERSION 3.24.2)
|
|
|
|
project(Hohmann VERSION 1.0)
|
|
|
|
set(SOURCES src/main.cpp)
|
|
add_executable(Hohmann ${SOURCES})
|
|
|
|
set(INCLUDE_DIR include)
|
|
target_include_directories(Hohmann PRIVATE ${INCLUDE_DIR})
|
|
|
|
#set(INCLUDE_HEADER_FILES include/**/*.h include/**/*.hpp)
|
|
|
|
find_package(OpenGL REQUIRED)
|
|
find_package(glfw3 REQUIRED)
|
|
|
|
target_link_libraries( Hohmann OpenGL::GL glfw )
|
|
|
|
|