Sha256: 88b98554081f8497597d3b01cb1b3c3ff7a4465caf6b50985a22a880ece8f713

Contents?: true

Size: 616 Bytes

Versions: 13

Compression:

Stored size: 616 Bytes

Contents

#
# 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(../../..)

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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
dlib-1.2.2 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.2.1 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.2.0 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.1.5 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.1.4 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.1.3 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.1.2 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.1.1 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.1.0 ext/dlib-19.4/dlib/test/gui/CMakeLists.txt
dlib-1.0.3 ext/dlib-18.13/dlib/test/gui/CMakeLists.txt
dlib-1.0.2 ext/dlib-18.13/dlib/test/gui/CMakeLists.txt
dlib-1.0.1 ext/dlib-18.13/dlib/test/gui/CMakeLists.txt
dlib-1.0.0 ext/dlib-18.13/dlib/test/gui/CMakeLists.txt