mirror of https://github.com/davisking/dlib.git
set the subversion eol-style to native for these files
--HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402352
This commit is contained in:
parent
9ace2f11fe
commit
0b26c0ba46
|
@ -1,25 +1,25 @@
|
|||
#
|
||||
# This is a CMake makefile. You can find the cmake utility and
|
||||
# information about it at http://www.cmake.org
|
||||
#
|
||||
|
||||
# create a variable called target_name and set it to the string "test"
|
||||
set (target_name gui)
|
||||
|
||||
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 test)
|
||||
ADD_EXECUTABLE(${target_name} main.cpp )
|
||||
|
||||
# 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.
|
||||
|
||||
|
||||
# Tell cmake to link our target executable to the non-gui version of the dlib
|
||||
# library.
|
||||
TARGET_LINK_LIBRARIES(${target_name} dlib )
|
||||
|
||||
#
|
||||
# This is a CMake makefile. You can find the cmake utility and
|
||||
# information about it at http://www.cmake.org
|
||||
#
|
||||
|
||||
# create a variable called target_name and set it to the string "test"
|
||||
set (target_name gui)
|
||||
|
||||
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 test)
|
||||
ADD_EXECUTABLE(${target_name} main.cpp )
|
||||
|
||||
# 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.
|
||||
|
||||
|
||||
# Tell cmake to link our target executable to the non-gui version of the dlib
|
||||
# library.
|
||||
TARGET_LINK_LIBRARIES(${target_name} dlib )
|
||||
|
||||
|
|
Loading…
Reference in New Issue