-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCMakeLists.txt
46 lines (31 loc) · 1.2 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
cmake_minimum_required(VERSION 2.8.9)
project(myProject)
## #############################################################################
## Find medinria-superproject
## #############################################################################
find_package(medInria-superProject REQUIRED)
# From here the following libraries are found and can be use in your plugins:
# -Qt
# -dtk
# -ITK
# -VTK
# -TTK
# -RPI
# -QtDCM
# -medinria
find_package(dtk REQUIRED) # needed to enable precompiled headers
include(${dtk_USE_FILE})
## #############################################################################
## Enable precompiled headers for Visual studio
## #############################################################################
include(dtkPlugin)
if (MSVC)
# Macros that enable precompiled headers to be added, defined by dtk.
include(dtkPch)
option(USE_PRECOMPILED_HEADERS "Use precompiled headers" ON)
endif(MSVC)
## #############################################################################
## Add your plugins
## #############################################################################
# call add_subdirectory for all plugins directory
add_subdirectory(myProjectDirectory)