Skip to content
Snippets Groups Projects
Makefile 226 B
Newer Older
  • Learn to ignore specific revisions
  • debug:
    	@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=Debug
    
    	@make -C build -j2
    
    release-debug:
    	@cmake -H. -Bbuild -DCMAKE_BUILD_TYPE=RelWithDebInfo
    
    clean:
    	rm -rf build
    
    .PHONY: build