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.
16 lines
313 B
16 lines
313 B
cmake_minimum_required(VERSION 3.10)
|
|
project(SSI_test)
|
|
|
|
list(PREPEND CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/cmake)
|
|
|
|
# Libigl
|
|
include(libigl)
|
|
|
|
# Enable the target igl::glfw
|
|
igl_include(glfw)
|
|
|
|
include_directories(include)
|
|
include_directories(/usr/include/eigen3)
|
|
|
|
add_subdirectory(test)
|
|
add_subdirectory(src)
|