Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
wolf
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mobile_robotics
wolf_projects
wolf_lib
wolf
Merge requests
!91
catkin build
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
catkin build
catkin_build
into
master
Overview
5
Commits
17
Pipelines
0
Changes
1
Merged
Jeremie Deray
requested to merge
catkin_build
into
master
8 years ago
Overview
5
Commits
17
Pipelines
0
Changes
1
Expand
Add support for catkin build & fix few things.
0
0
Merge request reports
Viewing commit
5a837cee
Prev
Next
Show latest version
1 file
+
13
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
5a837cee
fix cmake paths
· 5a837cee
Jeremie Deray
authored
8 years ago
CMakeLists.txt
+
13
−
1
Options
@@ -13,9 +13,21 @@ SET(CMAKE_MACOSX_RPATH 1)
# The project name and the type of project
PROJECT
(
wolf
)
# EXECUTABLE_OUTPUT_PATH & LIBRARY_OUTPUT_PATH are
# supercede by LIBRARY_OUTPUT_DIRECTORY & RUNTIME_OUTPUT_DIRECTORY
# which are properly set by catkin
SET
(
EXECUTABLE_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/bin
)
SET
(
LIBRARY_OUTPUT_PATH
${
CMAKE_CURRENT_SOURCE_DIR
}
/lib
)
SET
(
CMAKE_INSTALL_PREFIX /usr/local
)
# We'll set the install prefix only is it's empty
# which shouldn't be the case ...
string
(
COMPARE EQUAL
"
${
CMAKE_INSTALL_PREFIX
}
"
""
result
)
IF
(
result
)
# This path is actually default on linux
SET
(
CMAKE_INSTALL_PREFIX /usr/local
)
else
()
message
(
STATUS
"Installation path : "
${
CMAKE_INSTALL_PREFIX
}
)
ENDIF
()
IF
(
NOT CMAKE_BUILD_TYPE
)
SET
(
CMAKE_BUILD_TYPE
"DEBUG"
)
Loading