Skip to content
Snippets Groups Projects
Verified Commit c157d718 authored by baptiste.coudray's avatar baptiste.coudray
Browse files

Added Makefile

parent f7506cb4
No related branches found
No related tags found
No related merge requests found
all: release debug
release:
mkdir -p "cmake-build-release"
cmake -DCMAKE_BUILD_TYPE=Release -Bcmake-build-release
$(MAKE) -C cmake-build-release all
debug:
mkdir -p "cmake-build-debug"
cmake -DCMAKE_BUILD_TYPE=Debug -Bcmake-build-debug
$(MAKE) -C cmake-build-release all
clean:
$(MAKE) -C cmake-build-release clean
$(MAKE) -C cmake-build-release clean
.PHONY: release debug clean
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment