Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
BC
public
external
speex
Commits
f775510e
Commit
f775510e
authored
9 months ago
by
Ghislain MARY
Browse files
Options
Download
Patches
Plain Diff
No longer use CMAKE_BUILD_TYPE to allow configuration choice at build time.
parent
d7a3c173
linphone
1 merge request
!6
No longer use CMAKE_BUILD_TYPE to allow configuration choice at build time.
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libspeex/CMakeLists.txt
+10
-12
libspeex/CMakeLists.txt
with
10 additions
and
12 deletions
libspeex/CMakeLists.txt
+
10
−
12
View file @
f775510e
...
...
@@ -71,12 +71,11 @@ if(ENABLE_SPEEX_CODEC)
$<INSTALL_INTERFACE:include>
)
if
(
MSVC
)
if
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
OR CMAKE_BUILD_TYPE STREQUAL
"RelWithDebInfo"
)
install
(
FILES $<TARGET_PDB_FILE:speex>
DESTINATION
${
CMAKE_INSTALL_BINDIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
endif
()
install
(
FILES $<TARGET_PDB_FILE:speex>
DESTINATION
${
CMAKE_INSTALL_BINDIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
CONFIGURATIONS Debug RelWithDebInfo
)
endif
()
target_compile_options
(
speex PRIVATE
"-w"
)
install
(
TARGETS speex EXPORT SpeexTargets
...
...
@@ -121,12 +120,11 @@ if(ENABLE_SPEEX_DSP)
$<INSTALL_INTERFACE:include>
)
if
(
MSVC
)
if
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
OR CMAKE_BUILD_TYPE STREQUAL
"RelWithDebInfo"
)
install
(
FILES $<TARGET_PDB_FILE:speexdsp>
DESTINATION
${
CMAKE_INSTALL_BINDIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
)
endif
()
install
(
FILES $<TARGET_PDB_FILE:speexdsp>
DESTINATION
${
CMAKE_INSTALL_BINDIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
CONFIGURATIONS Debug RelWithDebInfo
)
endif
()
install
(
TARGETS speexdsp EXPORT SpeexDspTargets
RUNTIME DESTINATION
${
CMAKE_INSTALL_BINDIR
}
...
...
This diff is collapsed.
Click to expand it.
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets