diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-06 19:56:33 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-06 19:56:33 +0300 |
commit | 73e73f46eaff4f2236b31ed5858738c6b5e26ea3 (patch) | |
tree | 3af375ca4be03bacb34aa72b173dd22a9f792380 /Makefile | |
parent | Initialize sync timer (diff) | |
download | nheko-73e73f46eaff4f2236b31ed5858738c6b5e26ea3.tar.xz |
Use const refs for the deserialized data
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
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: |