Name Date Size #Lines LOC

..--

AllDisable/H06-Mar-2024-30661

AllEnable/H06-Mar-2024-30661

Common/H06-Mar-2024-534274

DefaultConf/H06-Mar-2024-444

CMakeLists.txtHD06-Mar-20243.4 KiB9071

README.mdHD06-Mar-20241.9 KiB5240

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