mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Add missing Makefile
This commit is contained in:
parent
227a46c32a
commit
34582543f6
2 changed files with 11 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -26,7 +26,6 @@ CMakeLists.txt.user
|
||||||
moc_*.cpp
|
moc_*.cpp
|
||||||
qrc_*.cpp
|
qrc_*.cpp
|
||||||
ui_*.h
|
ui_*.h
|
||||||
Makefile*
|
|
||||||
*-build-*
|
*-build-*
|
||||||
|
|
||||||
# QtCreator
|
# QtCreator
|
||||||
|
|
11
Makefile
Normal file
11
Makefile
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
run: build
|
||||||
|
@./build/nheko
|
||||||
|
|
||||||
|
build:
|
||||||
|
@cmake -H. -Bbuild
|
||||||
|
@make -C build
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf build
|
||||||
|
|
||||||
|
.PHONY: build
|
Loading…
Reference in a new issue