-
Notifications
You must be signed in to change notification settings - Fork 2
/
CMakeLists.txt
45 lines (37 loc) · 937 Bytes
/
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
cmake_minimum_required(VERSION 3.5)
project(pvl LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra")
find_package(TBB REQUIRED tbb)
find_package(Catch2 REQUIRED catch2)
#find_package( Boost 1.40 COMPONENTS bgl REQUIRED )
#include_directories( ${Boost_INCLUDE_DIR} )
include_directories("/usr/include/catch2/")
add_executable(pvl
main.cpp
Utils.hpp
Assert.hpp
Math.hpp
Optional.hpp
Vector.hpp
Matrix.hpp
Svd.hpp
Box.hpp
KdTree.hpp KdTree.inl.hpp
PlyWriter.hpp PlyReader.hpp
Cloud.hpp
CloudUtils.hpp
Kernels.hpp
TriangleMesh.hpp
Refinement.hpp
Simplification.hpp
QuadricDecimator.hpp
MemorylessDecimator.hpp
Range.hpp
Graph.hpp Graph.inl.hpp
UniformGrid.hpp
OctreeGrid.hpp
MarchingCubes.hpp MarchingCubes.cpp
)
target_link_libraries(pvl PRIVATE tbb)