Initial commit
This commit is contained in:
9
Makefile
Normal file
9
Makefile
Normal file
@@ -0,0 +1,9 @@
|
||||
SHELL := /bin/bash
|
||||
.DEFAULT_GOAL := build
|
||||
.PHONY: build
|
||||
|
||||
build:
|
||||
@if test -d build; then rm -fr build; fi
|
||||
@cmake -B build -S . -DCMAKE_PREFIX_PATH="/usr;/usr/lib64;/usr/lib64/cmake" -DCMAKE_SUPPRESS_DEVELOPER_WARNINGS=ON
|
||||
@cmake --build build
|
||||
@build/hello
|
Reference in New Issue
Block a user