3 This is a empty frame for project in C++. It should help to start a new project without caring much about project/build environment setup.
8 * [Design document](doc/design.md)
9 * [List of todos](./todo.html)
10 * [Basic directory structure](doc/directoryStructure.md)
11 * [How to start working](doc/start_working.md)
13 \todo see how todo works
15 ## How to convert this to your new project
18 git clone https://github.com/kracejic/cleanCppProject.git yourNewProject
23 git commit -m "first commit"
26 Do not forget to change name of *example* binary in `source/CMakeLists.txt` and `test/CMakeLists.txt`.
28 ## Building instructions
33 * Compiler with support for C++14
34 * git - for downloading external resources
35 * Doxygen for docs (*Graphviz for more graphs in docs, PlantUML for more UML diagrams*, PlantUML needs java)
36 * clang-tools for static analysis and formating
37 * cppcheck for another static analysis
39 #### Prerequisites on Linux
41 * Arch Linux: `sudo pacman -S cmake g++ graphviz git clang clang-tools-extra cppcheck java-runtime-common`
42 * download plantuml.jar and have it somewhere where *PATH* points to
44 * Ubuntu 16.04: `sudo apt-get install cmake g++ graphviz plantuml git clang clang-tidy clang-format`
46 #### Prerequisites on Windows
48 Two ways, which were tested:
51 * Minimal: `pacman -S cmake g++ git`
52 * Additional software `pacman -S clang mingw-w64-x86_64-clang-tools-extra mingw-w64-x86_64-clang-analyzer doxygen`
53 * For graphs in documentation install Graphviz (to `c:\Program Files\Graphviz`, so scripts can find it) and add its `bin` subdirectory to *PATH*, install java (have it on *PATH*), download PlantUML jar file and have it on *PATH*.
55 * Microsoft Visual Studio
58 * For additional features install clang with tools, doxygen, graphviz, plantuml, java and add them to the PATH (*not tested*)
66 mkdir build ; cd build
72 Ninja build witch clang, build all+doc and install it to dist folder:
74 mkdir build ; cd build
75 cmake -GNinja -DCMAKE_CXX_COMPILER="clang++" ..
76 ninja all doc && ninja install
82 #### Build on windows using MSYS2 + ninja
84 On windows you should prefer Ninja since it is much faster than make (but has no color in shell).
88 mkdir build ; cd build
94 #### Build on Windows using Microsoft Visual Studio 14
96 First you may wan to change project name in main `CMakeLists.txt`. Just go to the folder with the project and create new directory and create project files with this:
101 cmake -G "Visual Studio 14 2015" ..
104 and you can now open a `.sln` file with Visual Studio. You need to right click on executable target and *Set as StartUp project*. To really see the console window you want to do *Start without debugging*, since when run in debug mode only, console widow is closed too fast.
108 *Note:* Availability of some targets depends on availability certain executables (e.g. clang-format for *format* target)
111 * *all* (the default if no target is provided)
113 * *install* - install binaries into *CMAKE_INSTALL_PREFIX*
114 * *example* - build example binary
115 * *example-run* - build, install and run example binary (for your convenience)
116 * *run* - alias for example-run (in order to keep it short)
118 * *check* - run whole test suite (see test/CMakeLists.txt)
119 * *checkVerbose* - run whole test suite (see test/CMakeLists.txt), but more verbose
120 * *unit* - build and run unit tests only (see test/CMakeLists.txt)
121 * *unitall* - same as previous, only prints even successful unit tests results
123 * *doc* - build documentation (if doxygen is available)
124 * *format* - run clang-format on all source files (.clang-format in root directory of a project is used)
126 * *tidy* - run clang static analysis on all sources
127 * *cppcheck* - call cppcheck on all files (another static analysis)
129 * *external-update-all* - update all external sources/projects
130 * *external-update-Catch* - update Catch (Unit test library)
135 * `-DCMAKE_INSTALL_PREFIX`= - location for installation
136 * `-DVERSION_HOST`= - build machine name, see Version::getVersionLong
137 * `-DCMAKE_BUILD_TYPE`=RelWithDebInfo - for build type
144 > Copyright (c) 2016 Kracejic
146 > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
148 > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
150 > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.