Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Open sidebar
Institute of Technical Acoustics (ITA)
Redstart
Commits
3d7e38d1
Commit
3d7e38d1
authored
Dec 08, 2017
by
Dipl.-Ing. Jonas Stienen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Forcing dll copy of VA libs into bin folder during deploy
parent
5a5da34d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
0 deletions
+14
-0
CMakeLists.txt
CMakeLists.txt
+14
-0
No files found.
CMakeLists.txt
View file @
3d7e38d1
...
...
@@ -124,6 +124,20 @@ if( ITA_VA_INSTALL_WITH_DLLS OR ITA_REDSTART_INSTALL_WITH_DLLS )
endif
(
)
# install by copying DLL/SO next to Redstart binary
set
(
SHARED_LIBRARY_EXTENSION
"dll"
)
if
(
NOT WIN32
)
set
(
SHARED_LIBRARY_EXTENSION
"so"
)
endif
(
)
if
(
BUILD_SHARED_LIBS
)
# VA shared libs
install
(
FILES
"
${
VABASE_LIBRARY_DIRS
}
/VABase.
${
SHARED_LIBRARY_EXTENSION
}
"
DESTINATION
"bin"
)
install
(
FILES
"
${
VANET_LIBRARY_DIRS
}
/VANet.
${
SHARED_LIBRARY_EXTENSION
}
"
DESTINATION
"bin"
)
install
(
FILES
"
${
VANET_LIBRARY_DIRS
}
/VACore.
${
SHARED_LIBRARY_EXTENSION
}
"
DESTINATION
"bin"
)
endif
(
)
# dev
if
(
MSVC
)
set
(
ITA_REDSTART_INCLUDE_EXTERNAL_MSVC_PROJECTS ON CACHE BOOL
"If enabled, msvc projects of external vista packages will be included in the solution"
)
...
...
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