Skip to content
This repository has been archived by the owner on Dec 10, 2024. It is now read-only.

Commit

Permalink
Include cmake-args in usual dpkg-buildpackage builds
Browse files Browse the repository at this point in the history
Signed-off-by: Jose Luis Rivero <[email protected]>
  • Loading branch information
j-rivero committed Jan 8, 2024
1 parent b88b58e commit 03e37c3
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion .github/workflows/package-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,22 @@ jobs:
{
"build": {
"cmake-target": [
"install"
"install"
],
"cmake-args": [
"-DCMAKE_INSTALL_PREFIX=/usr",
"-DCMAKE_BUILD_TYPE=None",
"-DCMAKE_INSTALL_SYSCONFDIR=/etc",
"-DCMAKE_INSTALL_LOCALSTATEDIR=/var",
"-DCMAKE_EXPORT_NO_PACKAGE_REGISTRY=ON",
"-DCMAKE_FIND_USE_PACKAGE_REGISTRY=OFF",
"-DCMAKE_FIND_PACKAGE_NO_PACKAGE_REGISTRY=ON",
"-GUnix Makefiles",
"-DCMAKE_VERBOSE_MAKEFILE=ON",
"-DCMAKE_INSTALL_LIBDIR=lib/x86_64-linux-gnu",
"-DCMAKE_INSTALL_PREFIX=/opt/ros/humble",
"-DAMENT_PREFIX_PATH=/opt/ros/humble",
"-DCMAKE_PREFIX_PATH=/opt/ros/humble"
]
}
}

0 comments on commit 03e37c3

Please sign in to comment.