CMakeLists.txt 691 Bytes
Newer Older
1
2
3
4
5
#
# This is a CMake makefile.  You can find the cmake utility and
# information about it at http://www.cmake.org
#

6
cmake_minimum_required(VERSION 2.8.12)
7
8
9
10
11
12

# create a variable called target_name and set it to the string "htmlify"
set (target_name htmlify)

PROJECT(${target_name})

13
14
include(../../dlib/cmake)

15
# add all the cpp files we want to compile to this list.  This tells
16
# cmake that they are part of our target (which is the executable named htmlify)
17
ADD_EXECUTABLE(${target_name} 
Davis King's avatar
Davis King committed
18
19
20
   htmlify.cpp
   to_xml.cpp
   )
21

Davis King's avatar
Davis King committed
22
# Tell cmake to link our target executable to dlib.
23
TARGET_LINK_LIBRARIES(${target_name} dlib::dlib )
24
25
26
27
28
29



INSTALL(TARGETS ${target_name}
	RUNTIME DESTINATION bin
	)
30
31