Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
AllDisable/ | H | 06-Mar-2024 | - | 306 | 61 | |
AllEnable/ | H | 06-Mar-2024 | - | 306 | 61 | |
Common/ | H | 06-Mar-2024 | - | 534 | 274 | |
DefaultConf/ | H | 06-Mar-2024 | - | 44 | 4 | |
CMakeLists.txt | HD | 06-Mar-2024 | 3.4 KiB | 90 | 71 | |
README.md | HD | 06-Mar-2024 | 1.9 KiB | 52 | 40 |
README.md
1# Build Instructions 2 3This test aims at finding only compilation issues and as a result, the 4generated binary is not runnable. 5 6## UNIX (Linux and Mac) 7 8All the CMake commands are to be run from the root of the repository. 9 10* Build checks (Enable all functionalities) 11``` 12cmake -S test/build-combination -B test/build-combination/build/ -DTEST_CONFIGURATION=ENABLE_ALL 13make -C test/build-combination/build/ 14``` 15 16* Build checks (Disable all functionalities) 17``` 18cmake -S test/build-combination -B test/build-combination/build/ -DTEST_CONFIGURATION=DISABLE_ALL 19make -C test/build-combination/build/ 20``` 21 22* Build checks (Default configuration) 23``` 24cmake -S test/build-combination -B test/build-combination/build/ -DTEST_CONFIGURATION=DEFAULT_CONF 25make -C test/build-combination/build/ 26``` 27 28## Windows 29 30All the CMake commands are to be run from the root of the repository. 31 32* Build checks (Enable all functionalities) 33``` 34cmake -S test/build-combination -B test/build-combination/build/ -DTEST_CONFIGURATION=ENABLE_ALL -DCMAKE_GENERATOR_PLATFORM=Win32 35``` 36Open the generated Visual Studio Solution file `test\build-combination\build\FreeRTOS-Plus-TCP Build Combination.sln` 37in Visual Studio and click `Build --> Build Solution`. 38 39* Build checks (Disable all functionalities) 40``` 41cmake -S test/build-combination -B test/build-combination/build/ -DTEST_CONFIGURATION=ENABLE_ALL -DCMAKE_GENERATOR_PLATFORM=Win32 42``` 43Open the generated Visual Studio Solution file `test\build-combination\build\FreeRTOS-Plus-TCP Build Combination.sln` 44in Visual Studio and click `Build --> Build Solution`. 45 46* Build checks (Default configuration) 47``` 48cmake -S test/build-combination -B test/build-combination/build/ -DTEST_CONFIGURATION=ENABLE_ALL -DCMAKE_GENERATOR_PLATFORM=Win32 49``` 50Open the generated Visual Studio Solution file `test\build-combination\build\FreeRTOS-Plus-TCP Build Combination.sln` 51in Visual Studio and click `Build --> Build Solution`. 52