forked from arxsys/dff
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakeLists.txt
executable file
·41 lines (34 loc) · 1.15 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
# DFF -- An Open Source Digital Forensics Framework
# Copyright (C) 2009-2013 ArxSys
# This program is free software, distributed under the terms of
# the GNU General Public License Version 2. See the LICENSE file
# at the top of the source tree.
#
# See http://www.digital-forensic.org for more information about this
# project. Please do not directly contact any of the maintainers of
# DFF for assistance; the project provides a web site, mailing lists
# and IRC channels for your use.
#
# Author(s):
# Christophe Malinge <[email protected]>
# Solal Jacob <[email protected]>
# Frederic Baguelin <[email protected]>
#
cmake_minimum_required(VERSION 2.6)
include("cmake_modules/dff/header.cmake")
include("cmake_modules/dff/find_deps.cmake")
include("cmake_modules/dff/macros.cmake")
include("cmake_modules/dff/copy_deps.cmake")
install_file(
${CONSOLE_SCRIPT}
${GRAPHICAL_SCRIPT}
)
#### Main subdirectories to recurse
add_subdirectory (dff)
add_subdirectory (doc)
if (UNIX)
include("cmake_modules/dff/unix_install.cmake")
else(UNIX)
include("cmake_modules/dff/cpack_win.cmake")
endif(UNIX)
include("cmake_modules/dff/footer.cmake")