We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c6f01 commit c58331bCopy full SHA for c58331b
deb/build.sh
@@ -15,8 +15,8 @@ die () {
15
mkdir ../build
16
cd ../build
17
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr .. || die "Failed to configure project"
18
- make -j "$(nproc)" || die "Failed to build project"
19
- make DESTDIR="../deb/package/" install || die "Failed to install project into package directory"
+ cmake --build . || die "Failed to build project"
+ cmake --install . --prefix "../deb/package/" || die "Failed to install project into package directory"
20
)
21
22
mkdir -p package/DEBIAN/
0 commit comments