https://github.com/rscherrer/setupp-basic
Ultra basic version of setupp
https://github.com/rscherrer/setupp-basic
Last synced: 2 months ago
JSON representation
Ultra basic version of setupp
- Host: GitHub
- URL: https://github.com/rscherrer/setupp-basic
- Owner: rscherrer
- License: gpl-3.0
- Created: 2024-06-21T20:07:15.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-06-21T20:30:11.000Z (11 months ago)
- Last Synced: 2025-01-18T14:33:05.522Z (4 months ago)
- Language: CMake
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# setupp-basic
This is an ultra-basic variation of the [setupp](https://github.com/rscherrer/setupp) configuration for C++ programs using CMake. This version has no tests, not even a specialized source code directory (`src`) and may be used for toy programs. It is destined for beginner computational biologists who want a simple C++ program up-and-running fast. The pre-requisites are the same as in [setupp](https://github.com/rscherrer/setupp).
To use it, simply download this repository, change its name, change `basic` to whatever your project name is in `CMakeLists.txt`, get rid of the documentation if superfluous, and run the following (assuming Linux or MacOS but check the original repository above for how slightly different it is on Windows):
```bash
git clone https://github.com/rscherrer/setupp-basic
cd setupp-basic
mkdir build & cd build
cmake ..
cmake --build .
```This will create a `build/` folder and locate the compiled executable in a `bin/` folder, both in the root directory of the present repository.