You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dlib/tools/convert_dlib_nets_to_caffe/CMakeLists.txt

26 lines
407 B

#
# 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)
set (target_name dtoc)
PROJECT(${target_name})
add_subdirectory(../../dlib dlib_build)
add_executable(${target_name}
main.cpp
)
target_link_libraries(${target_name} dlib::dlib )
INSTALL(TARGETS ${target_name}
RUNTIME DESTINATION bin
)