Skip to content

parsaM110/CmakeProject

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MyCMakeTestProject

Makefile

  • 🎈 use <Alt> <Numpad: 0 0 9> for making tab (vsCode tab makes 4 spaces)

Creating Makefile liux

touch Makefile

Creating Makefile Windows

type nul > Makefile
#or
echo.> Makefile

🎆 MakeFile for linux

prepare:
	rm -rf build
	mkdir build

🎇 MakeFile for Windows

prepare:
	rmdir /s /q build
	mkdir build

About

my first Cmake Project

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors