This website works better with JavaScript.
Home
Explore
Help
Sign In
RuhNetConsulting
/
bcg729
mirror of
https://github.com/BelledonneCommunications/bcg729
Watch
1
Star
0
Fork
0
Code
Issues
0
Projects
0
Releases
8
Wiki
Activity
Browse Source
CMakeLists.txt: do not activate -Werror on iOS (SDK not compiling otherwise)
pull/2/head
Gautier Pelloux-Prayer
10 years ago
parent
91d1206d63
commit
51d0d1dda4
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
CMakeLists.txt
+ 4
- 1
CMakeLists.txt
View File
@ -70,7 +70,10 @@ add_definitions(-DHAVE_CONFIG_H)
if
(
MSVC
)
add_definitions
(
"/W3"
)
else
(
)
add_definitions
(
"-Wall"
"-Werror"
)
add_definitions
(
"-Wall"
)
if
(
NOT
IOS
)
add_definitions
(
"-Werror"
)
endif
(
)
endif
(
)
add_subdirectory
(
src
)
Write
Preview
Loading…
Cancel
Save