Geometry/CMakeLists.txt

8 lines
143 B
CMake
Raw Normal View History

2023-12-31 14:25:18 +01:00
cmake_minimum_required(VERSION 3.10)
project(Geometry)
2023-12-31 14:30:21 +01:00
include_directories(${PROJECT_SOURCE_DIR}/include)
2023-12-31 14:25:18 +01:00
add_executable(Geometry main.cpp)