https://github.com/aknavj/dev-templates
My preconfigured environment for a quick development. Keeping things organized!
https://github.com/aknavj/dev-templates
Last synced: 2 months ago
JSON representation
My preconfigured environment for a quick development. Keeping things organized!
- Host: GitHub
- URL: https://github.com/aknavj/dev-templates
- Owner: aknavj
- Created: 2019-07-11T21:50:43.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2019-07-12T00:39:15.000Z (almost 6 years ago)
- Last Synced: 2025-02-12T23:19:36.359Z (4 months ago)
- Language: C++
- Size: 518 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dev-templates
My preconfigured environment for a quick development. Keeping things organized!## Visual Studio Project template solution:
Folder structure:
* **build** - Folder is generated when you are building project. Builded **exec** or **lib** depends on your target platform architecture.
* **common** - Folder where shared application resources are. For example **.rc** files.
* **externs** - Folder where you will put an external library dependencies into **include** and **lib** forlder
* include
* lib
* x86
* x64
* **scripts** - Folder for your build steps, scripts. Setup your Environment variables and so on.
* pre - You must specify a folder in VS project solution
* post - You must specify a folder in VS project solution.
* custom - Custom scripts.
* **sources** - Folder for your **SOURCE CODE** to be placed. (You must import your source code for each VS project file separately.What is configured and supported?
* [x] Supports general x86 and x64 bit builds in Debug and Release mode.
* [ ] Linux Scons Configuration, cross platform compilation using Virtual Machine.Supported VS Solutions in folder: (ready to use)
* [ ] VS2010
* [ ] VS2012
* [x] VS2013
* [ ] VS2015
* [x] VS2017Usage:
Just rename **.SLN** files and **vcxproj**-based files in root and **project** directory.