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.
12 lines
303 B
12 lines
303 B
cmake_minimum_required(VERSION 3.16)
|
|
project(IGATrimGauss)
|
|
|
|
include_directories(${PROJECT_SOURCE_DIR}/include)
|
|
include_directories(${PROJECT_SOURCE_DIR}/external)
|
|
|
|
add_subdirectory(src)
|
|
|
|
# add eigen
|
|
find_package(Eigen3 REQUIRED)
|
|
include_directories(${EIGEN3_INCLUDE_DIRS})
|
|
link_libraries(Eigen3::Eigen)
|
|
|