Commit edbc2e2a authored by Dominik Charousset's avatar Dominik Charousset

Merge pull request #1405

parents f666a344 db5fd0b2
...@@ -3,6 +3,12 @@ ...@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file. The format All notable changes to this project will be documented in this file. The format
is based on [Keep a Changelog](https://keepachangelog.com). 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 ## [0.19.1] - 2023-05-01
### Added ### Added
......
...@@ -2,7 +2,7 @@ add_custom_target(all_tools) ...@@ -2,7 +2,7 @@ add_custom_target(all_tools)
macro(add name) macro(add name)
add_executable(${name} ${name}.cpp ${ARGN}) 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) add_dependencies(${name} all_tools)
endmacro() endmacro()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment