2011-06-19 01:49:42 +08:00
|
|
|
#
|
|
|
|
# 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.6)
|
|
|
|
|
|
|
|
# create a variable called target_name and set it to the string "imglab"
|
|
|
|
set (target_name imglab)
|
|
|
|
|
|
|
|
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 executable named imglab)
|
|
|
|
ADD_EXECUTABLE(${target_name}
|
|
|
|
src/main.cpp
|
2011-06-19 22:49:23 +08:00
|
|
|
src/metadata_editor.h
|
|
|
|
src/metadata_editor.cpp
|
2011-07-09 03:47:38 +08:00
|
|
|
src/convert_pascal_xml.h
|
|
|
|
src/convert_pascal_xml.cpp
|
2011-07-09 03:43:07 +08:00
|
|
|
src/convert_pascal_v1.h
|
|
|
|
src/convert_pascal_v1.cpp
|
2011-07-09 05:21:24 +08:00
|
|
|
src/convert_idl.h
|
|
|
|
src/convert_idl.cpp
|
2011-07-09 01:38:38 +08:00
|
|
|
src/common.h
|
|
|
|
src/common.cpp
|
2011-06-19 01:49:42 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# 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
|
|
|
|
)
|
|
|
|
|
|
|
|
#set default build type to Release
|
2011-06-20 06:12:46 +08:00
|
|
|
include(../../dlib/release_build_by_default)
|