Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
BC
public
liblinphone
Commits
8ba35cf9
Commit
8ba35cf9
authored
Sep 28, 2017
by
Ronan
Browse files
fix(CMakeLists.txt): remove -g flag on Windows
parent
7383a292
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
CMakeLists.txt
CMakeLists.txt
+5
-1
No files found.
CMakeLists.txt
View file @
8ba35cf9
...
...
@@ -72,7 +72,11 @@ if(NOT CMAKE_BUILD_TYPE)
endif
()
set
(
CMAKE_CXX_FLAGS_RELEASE
"-O2 -DNDEBUG"
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"-g -DDEBUG"
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"-DDEBUG"
)
if
(
NOT WIN32
)
list
(
APPEND CMAKE_CXX_FLAGS_DEBUG
"-g"
)
endif
()
if
(
ENABLE_STATIC
)
set
(
LINPHONE_LIBS_FOR_TOOLS linphone-static
)
...
...
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