summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-06 19:56:33 +0300
committerKonstantinos Sideris <sideris.konstantin@gmail.com>2017-04-06 19:56:33 +0300
commit73e73f46eaff4f2236b31ed5858738c6b5e26ea3 (patch)
tree3af375ca4be03bacb34aa72b173dd22a9f792380 /Makefile
parent5bcaaa3aa3893c6a6982c6834090cf0212dc115d (diff)
Use const refs for the deserialized data
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index fc3cb5cf..7f97e934 100644
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,12 @@
run: build
- @./build/nheko
+ ./build/nheko
-build:
- @cmake -H. -Bbuild
+debug:
+ @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug
@make -C build
-release:
- @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Release
+release-debug:
+ @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
@make -C build
clean: