forked from CHLNDDEV/oceanmesh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
37 lines (25 loc) · 1.14 KB
/
CMakeLists.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
cmake_minimum_required(VERSION 2.8.12)
project(oceanmesh)
##############################################################################
# Add custom CMake modules
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake ${CMAKE_MODULE_PATH})
# Some screen output
message(STATUS "OS detected: ${CMAKE_SYSTEM_NAME}")
message(STATUS "CXX Compiler detected: ${CMAKE_CXX_COMPILER_ID}")
message(STATUS "CMake additional search path for libraries: ${CMAKE_LIBRARY_PATH}")
# CGAL and its components
find_package(CGAL)
message(STATUS "CGAL version: ${CGAL_VERSION}")
if( CGAL_VERSION VERSION_LESS 5.0)
message(FATAL_ERROR "This project requires at least CGAL 5.0 library and will not be compiled.")
endif()
# include helper file
include( ${CGAL_USE_FILE})
set (SRC "oceanmesh/cpp")
include_directories (${SRC})
find_package(pybind11)
message(STATUS "Found pybind11 v${pybind11_VERSION}: ${pybind11_INCLUDE_DIRS}")
#add_subdirectory(pybind11)
pybind11_add_module(delaunay_class ${SOURCES} "${SRC}/delaunay_class.cpp")
pybind11_add_module(HamiltonJacobi ${SOURCES} "${SRC}/HamiltonJacobi.cpp")
pybind11_add_module(fast_geometry ${SOURCES} "${SRC}/fast_geometry.cpp")