-
Notifications
You must be signed in to change notification settings - Fork 3
/
CMakeLists.txt
86 lines (59 loc) · 1.76 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
# Created by the script cgal_create_CMakeLists
# This is the CMake script for compiling a set of CGAL applications.
project( pPart )
cmake_minimum_required(VERSION 2.8.11)
# CGAL and its components
find_package( CGAL QUIET COMPONENTS )
if ( NOT CGAL_FOUND )
message(STATUS "This project requires the CGAL library, and will not be compiled.")
return()
endif()
# include helper file
include( ${CGAL_USE_FILE} )
# Boost and its components
find_package( Boost REQUIRED )
if ( NOT Boost_FOUND )
message(STATUS "This project requires the Boost library, and will not be compiled.")
return()
endif()
# include for local directory
# include for local package
set(EIGEN3_INCLUDE_DIR "/usr/include/eigen3")
find_package(Eigen3)
if(EIGEN3_FOUND)
message(STATUS "NOTICE: Eigen library found.")
include( ${EIGEN3_USE_FILE} )
else()
message(STATUS "NOTICE: Eigen library is not found.")
endif()
set(CMAKE_MODULE_PATH "/usr/local/include/eigen/cmake/;${CMAKE_MODULE_PATH}")
#set(CHOLMOD_LIBRARIES "/usr/include/suitesparse/")
find_package( Cholmod )
find_library(LAPACK_LIB NAMES lapack)
find_library(BLAS_LIB NAMES blas)
find_library(SS_LIB NAMES suitesparseconfig)
include_directories( ${CHOLMOD_INCLUDES})
# Creating entries for target: pPart
# ############################
add_executable( cpFEM
cpFEM.cpp
cpFEM.h
volumes.cpp
create.cpp
fields.cpp
number.cpp
move.cpp
draw.cpp
linear_aux.cpp
linear_vect_to_field.cpp
linear_fill_diff_matrices.cpp
linear_diff_operators.cpp
linear_p_equation.cpp
move.cpp
linear_u_add_spring_force.cpp
linear_w_equation.cpp
lloyds.cpp
)
add_to_cached_list( CGAL_EXECUTABLE_TARGETS cpFEM )
# Link the executable to CGAL and third-party libraries
target_link_libraries( cpFEM ${CGAL_LIBRARIES} ${CGAL_3RD_PARTY_LIBRARIES} )