Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
dlib
Commits
7af08c27
"docs/source/vscode:/vscode.git/clone" did not exist on "3ee7e11268eb96c44cad3e57d4c8aa870ed2fa02"
Commit
7af08c27
authored
Sep 30, 2012
by
Davis King
Browse files
Made test/CMakeLists.txt set GCC's warning level to all by default.
parent
8f364975
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
dlib/test/CMakeLists.txt
dlib/test/CMakeLists.txt
+5
-0
No files found.
dlib/test/CMakeLists.txt
View file @
7af08c27
...
@@ -136,6 +136,11 @@ ADD_EXECUTABLE(${target_name} main.cpp tester.cpp ${tests})
...
@@ -136,6 +136,11 @@ ADD_EXECUTABLE(${target_name} main.cpp tester.cpp ${tests})
# add the folder containing the dlib folder to the include path
# add the folder containing the dlib folder to the include path
INCLUDE_DIRECTORIES
(
../..
)
INCLUDE_DIRECTORIES
(
../..
)
# Turn on all warnings when using gcc.
if
(
CMAKE_COMPILER_IS_GNUCXX
)
add_definitions
(
"-W -Wall"
)
endif
()
# There is a CMakeLists.txt file in the dlib source folder that tells cmake
# 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.
# how to build the dlib library. Tell cmake about that file.
add_subdirectory
(
.. dlib_build
)
add_subdirectory
(
.. dlib_build
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment