Mercurial > hg > orthanc-stone
comparison Resources/CodeGeneration/testCppHandler/README.md @ 494:fc17251477d6 bgo-commands-codegen
TS and CPP tests OK. Ongoing code for C++ program that reads list of serialized messages in N files. Requires conan
author | bgo-osimis |
---|---|
date | Sat, 23 Feb 2019 10:18:13 +0100 |
parents | |
children | 0d42bda615a8 |
comparison
equal
deleted
inserted
replaced
493:6fbf2eae7c88 | 494:fc17251477d6 |
---|---|
1 Requirements | |
2 ============== | |
3 - Install Python 3.x (tested with 3.7) | |
4 - Install conan with `pip install conan` (tested with 1.12.2) | |
5 - Install CMake (tested with 3.12) | |
6 - Under Windows: Visual Studio 2017 | |
7 - Under *nix*: Ninja | |
8 | |
9 How to build under *nix* | |
10 =============================== | |
11 - Navigate to `testCppHandler` folder | |
12 - `conan install . -g cmake` | |
13 - `mkdir build` | |
14 - `cd build` | |
15 - `cmake -G "Ninja" ..` | |
16 - `cmake --build . --config Debug` or - `cmake --build . --config Release` | |
17 | |
18 How to build under Windows with Visual Studio | |
19 ============================================== | |
20 - Navigate to repo root | |
21 - `mkdir build` | |
22 - `cd build` | |
23 - `conan install .. -g cmake_multi -s build_type=Release` | |
24 - `conan install .. -g cmake_multi -s build_type=Debug` | |
25 - `cmake -G "Visual Studio 15 2017 Win64" ..` (modify for your current Visual Studio version) | |
26 - `cmake --build . --config Debug` or - `cmake --build . --config Release` | |
27 | |
28 | |
29 | |
30 | |
31 | |
32 |