Skip to content
Snippets Groups Projects
Makefile 241 B
Newer Older
  • Learn to ignore specific revisions
  • 	@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=Debug
    	@cmake --build build
    
    	@cmake -H. -GNinja -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
    	@cmake --build build
    
    run:
    	@./build/nheko
    
    clean:
    	rm -rf build
    
    .PHONY: build