Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gmsh
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nico Schlömer
gmsh
Commits
faa4ab7c
There was a problem fetching the pipeline summary.
Commit
faa4ab7c
authored
7 years ago
by
Nico Schlömer
Browse files
Options
Downloads
Patches
Plain Diff
fix libdir in installation
parent
3df4098d
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeLists.txt
+2
-2
2 additions, 2 deletions
CMakeLists.txt
wrappers/java/CMakeLists.txt
+2
-2
2 additions, 2 deletions
wrappers/java/CMakeLists.txt
with
4 additions
and
4 deletions
CMakeLists.txt
+
2
−
2
View file @
faa4ab7c
...
...
@@ -1656,7 +1656,7 @@ endif(WIN32 OR CYGWIN)
# (e.g. "make lib" or "make shared" followed by "make install/fast")
install
(
TARGETS gmsh DESTINATION
${
GMSH_BIN
}
OPTIONAL
)
if
(
ENABLE_BUILD_LIB
)
install
(
TARGETS lib DESTINATION
${
GMSH_LIB
}
OPTIONAL
)
install
(
TARGETS lib DESTINATION
${
INSTALL_LIB_DIR
}
OPTIONAL
)
endif
(
ENABLE_BUILD_LIB
)
if
(
ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC
)
if
(
WIN32 AND NOT MSVC OR CYGWIN
)
...
...
@@ -1692,7 +1692,7 @@ if(ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC)
install
(
FILES
${
GCC_DLL
}
${
STDC_DLL
}
DESTINATION
${
GMSH_LIB
}
)
endif
(
GCC_DLL AND STDC_DLL
)
else
(
WIN32 AND NOT MSVC OR CYGWIN
)
install
(
TARGETS shared DESTINATION
${
GMSH_LIB
}
OPTIONAL
)
install
(
TARGETS shared DESTINATION
${
INSTALL_LIB_DIR
}
OPTIONAL
)
endif
(
WIN32 AND NOT MSVC OR CYGWIN
)
endif
(
ENABLE_BUILD_SHARED OR ENABLE_BUILD_DYNAMIC
)
...
...
This diff is collapsed.
Click to expand it.
wrappers/java/CMakeLists.txt
+
2
−
2
View file @
faa4ab7c
...
...
@@ -69,6 +69,6 @@ POST_BUILD # do the rest of the command after the build period
COMMAND
${
CMAKE_COMMAND
}
-E copy
${
CMAKE_CURRENT_SOURCE_DIR
}
/WrappingJava/build.xml
${
CMAKE_CURRENT_BINARY_DIR
}
/WrappingJava/
)
install
(
TARGETS WrapGmsh DESTINATION
lib
OPTIONAL
)
install
(
TARGETS WrapGmsh DESTINATION
${
INSTALL_LIB_DIR
}
OPTIONAL
)
install
(
FILES
${
CMAKE_CURRENT_BINARY_DIR
}
/WrappingJava/WrapGmsh.jar
DESTINATION
lib
)
DESTINATION
${
INSTALL_LIB_DIR
}
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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