mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
0604f4fc00
--HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403718
41 lines
1.0 KiB
CMake
41 lines
1.0 KiB
CMake
#
|
|
# This is a CMake makefile. You can find the cmake utility and
|
|
# information about it at http://www.cmake.org
|
|
#
|
|
|
|
SET(CMAKE_ALLOW_LOOSE_LOOP_CONSTRUCTS true)
|
|
cmake_minimum_required(VERSION 2.4)
|
|
if(COMMAND cmake_policy)
|
|
cmake_policy(SET CMP0003 NEW)
|
|
endif()
|
|
|
|
# create a variable called target_name and set it to the string "htmlify"
|
|
set (target_name htmlify)
|
|
|
|
PROJECT(${target_name})
|
|
|
|
# add all the cpp files we want to compile to this list. This tells
|
|
# cmake that they are part of our target (which is the exectuable named htmlify)
|
|
ADD_EXECUTABLE(${target_name}
|
|
htmlify.cpp
|
|
to_xml.cpp
|
|
)
|
|
|
|
# add the folder containing the dlib folder to the include path
|
|
INCLUDE_DIRECTORIES(../..)
|
|
|
|
# There is a CMakeLists.txt file in the dlib source folder that tells cmake
|
|
# how to build the dlib library. Tell cmake about that file.
|
|
add_subdirectory(../../dlib dlib_build)
|
|
|
|
# Tell cmake to link our target executable to the non-gui version of the dlib
|
|
# library.
|
|
TARGET_LINK_LIBRARIES(${target_name} dlib )
|
|
|
|
|
|
|
|
|
|
INSTALL(TARGETS ${target_name}
|
|
RUNTIME DESTINATION bin
|
|
)
|