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
534 B

cmake_minimum_required(VERSION 3.16)
project(example4_curve_surface_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)