Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
A
Actor Framework
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
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
cpp-libs
Actor Framework
Commits
edbc2e2a
Commit
edbc2e2a
authored
May 08, 2023
by
Dominik Charousset
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1405
parents
f666a344
db5fd0b2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
CHANGELOG.md
CHANGELOG.md
+6
-0
tools/CMakeLists.txt
tools/CMakeLists.txt
+1
-1
No files found.
CHANGELOG.md
View file @
edbc2e2a
...
...
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file. The format
is based on
[
Keep a Changelog
](
https://keepachangelog.com
)
.
## [Unreleased]
### Changed
-
Install CAF tools to
`${CMAKE_INSTALL_BINDIR}`
to make packaging easier.
## [0.19.1] - 2023-05-01
### Added
...
...
tools/CMakeLists.txt
View file @
edbc2e2a
...
...
@@ -2,7 +2,7 @@ add_custom_target(all_tools)
macro
(
add name
)
add_executable
(
${
name
}
${
name
}
.cpp
${
ARGN
}
)
install
(
TARGETS
${
name
}
DESTINATION
${
CMAKE_INSTALL_
DATADIR
}
/caf/tools
)
install
(
TARGETS
${
name
}
DESTINATION
${
CMAKE_INSTALL_
BINDIR
}
)
add_dependencies
(
${
name
}
all_tools
)
endmacro
()
...
...
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