dlib/tools/htmlify/CMakeLists.txt

32 lines
704 B
CMake
Raw Normal View History

#
# This is a CMake makefile. You can find the cmake utility and
# information about it at http://www.cmake.org
#
cmake_minimum_required(VERSION 3.8.0)
# create a variable called target_name and set it to the string "htmlify"
set (target_name htmlify)
2017-10-17 09:36:18 +08:00
project(${target_name})
2017-10-17 09:36:18 +08:00
add_subdirectory(../../dlib dlib_build)
# add all the cpp files we want to compile to this list. This tells
2011-06-20 06:37:23 +08:00
# cmake that they are part of our target (which is the executable named htmlify)
2017-10-17 09:36:18 +08:00
add_executable(${target_name}
2013-02-11 02:58:22 +08:00
htmlify.cpp
to_xml.cpp
)
2013-02-11 02:58:22 +08:00
# Tell cmake to link our target executable to dlib.
2017-10-17 09:36:18 +08:00
target_link_libraries(${target_name} dlib::dlib )
2017-10-17 09:36:18 +08:00
install(TARGETS ${target_name}
RUNTIME DESTINATION bin
)