Commit 072c9d9d authored by Davis King's avatar Davis King

Fixed cmake file to correctly enable C++11 by default.

parent d1003cbe
...@@ -10,6 +10,8 @@ set (target_name htmlify) ...@@ -10,6 +10,8 @@ set (target_name htmlify)
PROJECT(${target_name}) PROJECT(${target_name})
include(../../dlib/cmake)
# add all the cpp files we want to compile to this list. This tells # 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 htmlify) # cmake that they are part of our target (which is the executable named htmlify)
ADD_EXECUTABLE(${target_name} ADD_EXECUTABLE(${target_name}
...@@ -18,7 +20,6 @@ ADD_EXECUTABLE(${target_name} ...@@ -18,7 +20,6 @@ ADD_EXECUTABLE(${target_name}
) )
# Tell cmake to link our target executable to dlib. # Tell cmake to link our target executable to dlib.
include(../../dlib/cmake)
TARGET_LINK_LIBRARIES(${target_name} dlib::dlib ) TARGET_LINK_LIBRARIES(${target_name} dlib::dlib )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment