diff options
author | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-11 17:45:47 +0300 |
---|---|---|
committer | Konstantinos Sideris <sideris.konstantin@gmail.com> | 2017-04-11 17:45:47 +0300 |
commit | 6468faa39eda494d83310bec4a557d29bf037f8a (patch) | |
tree | c4a2632730c99500871fbc3a8f5d746585507089 /Makefile | |
parent | Make the timer single shot (diff) | |
download | nheko-6468faa39eda494d83310bec4a557d29bf037f8a.tar.xz |
Use only a MatrixClient as a shared pointer
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/Makefile b/Makefile index eb8a6663..97431093 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,13 @@ -run: debug - ./build/nheko - debug: - @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug - @make -C build -j2 + @cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug + @cmake --build build release-debug: - @cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo - @make -C build -j2 + @cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo + @cmake --build build + +run: + @./build/nheko clean: rm -rf build |