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.
22 lines
536 B
22 lines
536 B
cmake_minimum_required(VERSION 3.16)
|
|
project(example3_curve_curve_intersection)
|
|
|
|
# C++ 11 is required
|
|
set(CMAKE_CXX_STANDARD 11)
|
|
|
|
# list(PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
# Libigl
|
|
# include(libigl)
|
|
|
|
# Enable the target igl::glfw
|
|
# igl_include(glfw)
|
|
|
|
|
|
# add include directories
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)
|
|
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/3rdparty)
|
|
|
|
add_executable(${PROJECT_NAME} main.cpp)
|
|
|
|
target_link_libraries(${PROJECT_NAME} NurbsIntersection::nurbsintersect)
|
|
|