forked from YoYo000/fusibile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
52 lines (44 loc) · 1.38 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
cmake_minimum_required (VERSION 2.8)
project (fusibile)
find_package(OpenCV REQUIRED )
find_package(CUDA 6.0 REQUIRED ) # For Cuda Managed Memory and c++11
include_directories(${OpenCV_INCLUDE_DIRS})
include_directories(.)
set(CUDA_NVCC_FLAGS ${CUDA_NVCC_FLAGS};-O3 --use_fast_math --ptxas-options=-v -std=c++11 --compiler-options -Wall -gencode arch=compute_60,code=sm_60 -gencode arch=compute_60,code=sm_60)
if(CMAKE_COMPILER_IS_GNUCXX)
add_definitions(-std=c++11)
add_definitions(-Wall)
add_definitions(-Wextra)
add_definitions(-pedantic)
add_definitions(-Wno-unused-function)
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -O3 -ffast-math -march=native") # extend release-profile with fast-math
#add_definitions(-march=native)
endif()
find_package(OpenMP)
if (OPENMP_FOUND)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${OpenMP_CXX_FLAGS}")
endif()
# for YouCompleteMe
set( CMAKE_EXPORT_COMPILE_COMMANDS 1 )
# For compilation ...
# Specify target & source files to compile it from
cuda_add_executable(
fusibile
cameraGeometryUtils.h
vector_operations.h
camera.h
globalstate.h
algorithmparameters.h
cameraparameters.h
linestate.h
displayUtils.h
mathUtils.h
fileIoUtils.h
fusibile.cu
main.cpp
)
# For linking ...
# Specify target & libraries to link it with
target_link_libraries(fusibile
${OpenCV_LIBS}
)