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
bcg729
Commits
8bec1e5f
Commit
8bec1e5f
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
e29952e7
master
1 merge request
!22
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
src/CMakeLists.txt
+5
-6
src/CMakeLists.txt
with
5 additions
and
6 deletions
src/CMakeLists.txt
+
5
−
6
View file @
8bec1e5f
...
...
@@ -63,12 +63,11 @@ target_include_directories(bcg729
)
if
(
MSVC AND BUILD_SHARED_LIBS
)
if
(
CMAKE_BUILD_TYPE STREQUAL
"Debug"
OR CMAKE_BUILD_TYPE STREQUAL
"RelWithDebInfo"
)
install
(
FILES $<TARGET_PDB_FILE:bcg729>
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:bcg729>
DESTINATION
${
CMAKE_INSTALL_BINDIR
}
PERMISSIONS OWNER_READ OWNER_WRITE OWNER_EXECUTE GROUP_READ GROUP_EXECUTE WORLD_READ WORLD_EXECUTE
CONFIGURATIONS Debug RelWithDebInfo
)
set_target_properties
(
bcg729 PROPERTIES PREFIX
"lib"
)
endif
()
...
...
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