Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
hpp-spline
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
Container Registry
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
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Humanoid Path Planner
hpp-spline
Commits
243144ae
Commit
243144ae
authored
6 years ago
by
Guilhem Saurel
Browse files
Options
Downloads
Patches
Plain Diff
use standard CMake paths & tests
parent
631f54f2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitignore
+0
-2
0 additions, 2 deletions
.gitignore
CMakeLists.txt
+1
-3
1 addition, 3 deletions
CMakeLists.txt
tests/CMakeLists.txt
+2
-9
2 additions, 9 deletions
tests/CMakeLists.txt
with
3 additions
and
14 deletions
.gitignore
+
0
−
2
View file @
243144ae
# Build and Release Folders
bin/
lib/
build/
build-rel/
...
...
This diff is collapsed.
Click to expand it.
CMakeLists.txt
+
1
−
3
View file @
243144ae
cmake_minimum_required
(
VERSION 2.6
)
project
(
spline
)
INCLUDE
(
cmake/base.cmake
)
INCLUDE
(
cmake/test.cmake
)
INCLUDE
(
cmake/python.cmake
)
SET
(
PROJECT_ORG humanoid-path-planner
)
...
...
@@ -10,9 +11,6 @@ SET(PROJECT_DESCRIPTION
)
SET
(
PROJECT_URL
"https://github.com/
${
PROJECT_ORG
}
/
${
PROJECT_NAME
}
"
)
set
(
CMAKE_MODULE_PATH
"
${
PROJECT_SOURCE_DIR
}
/build/"
)
set
(
CMAKE_RUNTIME_OUTPUT_DIRECTORY
"
${
PROJECT_SOURCE_DIR
}
/bin/"
)
set
(
LIBRARY_OUTPUT_PATH
"
${
PROJECT_SOURCE_DIR
}
/lib/"
)
# Disable -Werror on Unix for now.
SET
(
CXX_DISABLE_WERROR True
)
SET
(
CMAKE_VERBOSE_MAKEFILE True
)
...
...
This diff is collapsed.
Click to expand it.
tests/CMakeLists.txt
+
2
−
9
View file @
243144ae
cmake_minimum_required
(
VERSION 2.6
)
include_directories
(
"
${
PROJECT_SOURCE_DIR
}
/include"
)
FILE
(
GLOB_RECURSE HeaderFiles
"
${
PROJECT_SOURCE_DIR
}
/include/spline/*.h"
)
add_executable
(
spline_tests
${
HeaderFiles
}
Main.cpp
ADD_UNIT_TEST
(
spline_tests Main.cpp
)
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