diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-07 19:25:06 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-07 19:25:06 +0300 |
commit | c7c3ee19ee66ab5f3ad57c16f546e35674093c0d (patch) | |
tree | bfe5f7129977344e70f9f52d2cab9ec7f744cbc8 /Makefile | |
parent | Use const refs for the deserialized data (diff) | |
download | nheko-c7c3ee19ee66ab5f3ad57c16f546e35674093c0d.tar.xz |
Use QLabel to display registration errors
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile index 7f97e934..eb8a6663 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ -run: build +run: debug ./build/nheko debug: @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug - @make -C build + @make -C build -j2 release-debug: @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo - @make -C build + @make -C build -j2 clean: rm -rf build |