dlib/tools/convert_dlib_nets_to_caffe/CMakeLists.txt

26 lines
408 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 2.8.12)
set (target_name dtoc)
PROJECT(${target_name})
2017-10-17 09:36:18 +08:00
add_subdirectory(../../dlib dlib_build)
2017-10-17 09:36:18 +08:00
add_executable(${target_name}
main.cpp
)
2017-10-17 09:36:18 +08:00
target_link_libraries(${target_name} dlib::dlib )
INSTALL(TARGETS ${target_name}
RUNTIME DESTINATION bin
)