Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ACS
Public
Power System Simulation and Optimization
DPsim
DPsim
Commits
f8f371c3
Commit
f8f371c3
authored
Jan 04, 2018
by
Steffen Vogel
🎅🏼
Browse files
cmake: install libraries to correct location on Fedora
parent
69b70eab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Dockerfile
View file @
f8f371c3
...
...
@@ -39,3 +39,5 @@ RUN pip3 install \
sphinx
\
m2r
\
breathe
ENV
LD_LIBRARY_PATH /usr/local/lib64
Source/CMakeLists.txt
View file @
f8f371c3
...
...
@@ -84,8 +84,10 @@ target_include_directories(dpsim PRIVATE ${INCLUDE_DIRS})
include_directories
(
${
CMAKE_CURRENT_SOURCE_DIR
}
${
CMAKE_CURRENT_BINARY_DIR
}
)
configure_file
(
Config.h.in
${
CMAKE_CURRENT_BINARY_DIR
}
/Config.h
)
include
(
GNUInstallDirs
)
install
(
TARGETS dpsim
RUNTIME DESTINATION
bin
LIBRARY DESTINATION
lib
ARCHIVE DESTINATION
lib
/static
RUNTIME DESTINATION
${
CMAKE_INSTALL_BINDIR
}
LIBRARY DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
ARCHIVE DESTINATION
${
CMAKE_INSTALL_LIBDIR
}
/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