Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
eos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Richard Torenvliet
eos
Commits
252a0714
Commit
252a0714
authored
Jan 29, 2017
by
Patrik Huber
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used CMAKE_CURRENT_SOURCE_DIR in the subdirectories
parent
0d8149ef
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
5 deletions
+5
-5
examples/CMakeLists.txt
examples/CMakeLists.txt
+1
-1
matlab/CMakeLists.txt
matlab/CMakeLists.txt
+3
-3
python/CMakeLists.txt
python/CMakeLists.txt
+1
-1
No files found.
examples/CMakeLists.txt
View file @
252a0714
...
...
@@ -52,4 +52,4 @@ target_link_libraries(generate-obj eos ${OpenCV_LIBS} ${Boost_LIBRARIES})
install
(
TARGETS fit-model-simple DESTINATION bin
)
install
(
TARGETS fit-model DESTINATION bin
)
install
(
TARGETS generate-obj DESTINATION bin
)
install
(
DIRECTORY
${
CMAKE_
SOURCE_DIR
}
/examples
/data DESTINATION bin
)
install
(
DIRECTORY
${
CMAKE_
CURRENT_SOURCE_DIR
}
/data DESTINATION bin
)
matlab/CMakeLists.txt
View file @
252a0714
...
...
@@ -35,7 +35,7 @@ matlab_add_mex(
target_include_directories
(
eos-matlab-fitting PRIVATE
${
CMAKE_SOURCE_DIR
}
/3rdparty/mexplus/include
${
CMAKE_SOURCE_DIR
}
/matlab/include
)
install
(
FILES
${
CMAKE_
SOURCE_DIR
}
/matlab
/demo.m DESTINATION matlab
)
install
(
DIRECTORY
${
CMAKE_
SOURCE_DIR
}
/matlab
/include DESTINATION matlab
)
install
(
DIRECTORY
${
CMAKE_
SOURCE_DIR
}
/matlab
/+eos DESTINATION matlab PATTERN
"*.cpp"
EXCLUDE
)
install
(
FILES
${
CMAKE_
CURRENT_SOURCE_DIR
}
/demo.m DESTINATION matlab
)
install
(
DIRECTORY
${
CMAKE_
CURRENT_SOURCE_DIR
}
/include DESTINATION matlab
)
install
(
DIRECTORY
${
CMAKE_
CURRENT_SOURCE_DIR
}
/+eos DESTINATION matlab PATTERN
"*.cpp"
EXCLUDE
)
install
(
TARGETS eos-matlab-fitting DESTINATION matlab/+eos/+fitting/private
)
python/CMakeLists.txt
View file @
252a0714
...
...
@@ -26,4 +26,4 @@ target_link_libraries(python-bindings PRIVATE eos ${OpenCV_LIBS} ${Boost_LIBRARI
set_target_properties
(
python-bindings PROPERTIES OUTPUT_NAME eos
)
install
(
TARGETS python-bindings DESTINATION python
)
install
(
FILES
${
CMAKE_
SOURCE_DIR
}
/python
/demo.py DESTINATION python
)
install
(
FILES
${
CMAKE_
CURRENT_SOURCE_DIR
}
/demo.py DESTINATION python
)
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