Skip to content

Commit

Permalink
mk: add release target (#901)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers authored Aug 10, 2023
1 parent b788cf4 commit 16b6bbf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ ninja:
[ -d build ] || cmake -B build -G Ninja
make build

.PHONY: release
release:
[ -d build ] || cmake -B build -DCMAKE_BUILD_TYPE=RelWithDebInfo
cmake --build build --parallel

.PHONY: dist
dist: build
cmake --install build --prefix dist
Expand Down

0 comments on commit 16b6bbf

Please sign in to comment.