Sha256: 2fc85e3c468e37fbb9bff14b4fa10be235473bbc43c897b552f3df0c2e6822bc

Contents?: true

Size: 1023 Bytes

Versions: 9

Compression:

Stored size: 1023 Bytes

Contents

#
# 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)

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

PROJECT(${target_name})
include(../../dlib/cmake)

# 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 executable named imglab)
ADD_EXECUTABLE(${target_name} 
   src/main.cpp
   src/metadata_editor.h
   src/metadata_editor.cpp
   src/convert_pascal_xml.h
   src/convert_pascal_xml.cpp
   src/convert_pascal_v1.h
   src/convert_pascal_v1.cpp
   src/convert_idl.h
   src/convert_idl.cpp
   src/common.h
   src/common.cpp
   src/cluster.cpp
)


# Tell cmake to link our target executable to dlib.  
TARGET_LINK_LIBRARIES(${target_name} dlib::dlib )


INSTALL(TARGETS ${target_name}
	RUNTIME DESTINATION bin
	)
INSTALL(PROGRAMS convert_imglab_paths_to_relative copy_imglab_dataset DESTINATION bin )

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
dlib-1.2.2 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.2.1 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.2.0 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.1.5 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.1.4 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.1.3 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.1.2 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.1.1 ext/dlib-19.4/tools/imglab/CMakeLists.txt
dlib-1.1.0 ext/dlib-19.4/tools/imglab/CMakeLists.txt