From 6468faa39eda494d83310bec4a557d29bf037f8a Mon Sep 17 00:00:00 2001 From: Konstantinos Sideris Date: Tue, 11 Apr 2017 17:45:47 +0300 Subject: Use only a MatrixClient as a shared pointer --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'Makefile') 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 -- cgit 1.4.1