| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
A simple attempt at making building c++ projects easier.
Alternatively,
$ bash <(curl -s https://raw.githubusercontent.com/silwalanish/cpp-starter-kit/main/create-cpp-project.sh) -n ${PROJECT_NAME} -p ${PROJECT_PATH}Install dependencies
$ make setupRun to compile the project.
$ make compileRun to link and build the executable. Will create a executable name as {EXECUTABLE_NAME} set in BuildOptions.mk.
$ make buildOr just
$ makeRun to execute the project.
$ make runRuns the unit tests.
$ make testRun to clean compile artifacts.
$ make clean\ |--> includes |--> libs |--> src |--> vendor
includes |--> Dependency1 |--> Dependency2 . . . |--> DependencyN
Note: Use conan to install dependencies if possible.
libs
|--> Debug
|-> Linux
|-> x86
|-> Dependency1.lib
|-> Dependency2.lib
|-> x64
|-> Dependency1.lib
|-> Dependency2.lib
|-> Win
...
|-> MacOs
...
|--> Release
|-> Linux
...
|-> Win
...
|-> MacOs
...
Note: Use conan to install dependencies if possible.
| Back | FazBrowse Home | New Git URL |