2 REM Helper script to build and run IoTivity on Windows
3 SETLOCAL ENABLEDELAYEDEXPANSION
10 IF /I "%1" == "msys" (
17 REM *** Default BUILD OPTIONS ***
20 if "%TARGET_ARCH%" == "" (
28 if "%LOGGING%" == "" (
32 if "%RELEASE%" == "" (
36 if "%WITH_TCP%" == "" (
40 if "%SECURED%" == "" (
44 if "%MULTIPLE_OWNER%" == "" (
48 set THREAD_COUNT=%NUMBER_OF_PROCESSORS%
50 set WITH_UPSTREAM_LIBCOAP=1
64 IF /I "%1"=="-threads" (
68 IF /I "%1"=="-noTest" (
71 IF /I "%1"=="-logging" (
74 IF /I "%1"=="-debugger" (
75 set DEBUG="%ProgramFiles(x86)%\Windows Kits\10\Debuggers\x64\cdb.exe" -2 -c "g"
77 IF /I "%1"=="-release" (
80 IF /I "%1"=="-noTCP" (
83 IF /I "%1"=="-noSecurity" (
86 IF /I "%1"=="-noMOT" (
98 REM We need to append the "PATH" so the octbstack.dll can be found by executables
99 IF "%BUILD_MSYS%" == "" (
100 set BUILD_DIR=out\windows\%TARGET_ARCH%\%BINDIR%
101 set PATH=!PATH!;!IOTIVITY_DIR!!BUILD_DIR!;
103 set BUILD_DIR=out\msys_nt\x86_64\%BINDIR%
104 set PATH=!PATH!;!BUILD_DIR!;C:\msys64\mingw64\bin
107 set BUILD_OPTIONS= TARGET_OS=%TARGET_OS% TARGET_ARCH=%TARGET_ARCH% RELEASE=%RELEASE% WITH_RA=0 TARGET_TRANSPORT=IP SECURED=%SECURED% WITH_TCP=%WITH_TCP% BUILD_SAMPLE=ON LOGGING=%LOGGING% TEST=%TEST% RD_MODE=CLIENT ROUTING=%ROUTING% WITH_UPSTREAM_LIBCOAP=%WITH_UPSTREAM_LIBCOAP% MULTIPLE_OWNER=%MULTIPLE_OWNER% -j %THREAD_COUNT%
109 REM Use MSVC_VERSION=12.0 for VS2013, or MSVC_VERSION=14.0 for VS2015.
110 REM If MSVC_VERSION has not been defined here, SCons chooses automatically a VS version.
111 IF NOT "%MSVC_VERSION%" == "" (
112 set BUILD_OPTIONS=%BUILD_OPTIONS% MSVC_VERSION=%MSVC_VERSION%
115 REM *** BUILD OPTIONS ***
117 if "!RUN_ARG!"=="server" (
118 cd %BUILD_DIR%\resource\examples
119 %DEBUG% simpleserver.exe
120 ) else if "!RUN_ARG!"=="client" (
121 cd %BUILD_DIR%\resource\examples
122 %DEBUG% simpleclient.exe
123 ) else if "!RUN_ARG!"=="serverhq" (
124 cd %BUILD_DIR%\resource\examples
125 %DEBUG% simpleserverHQ.exe
126 ) else if "!RUN_ARG!"=="clienthq" (
127 cd %BUILD_DIR%\resource\examples
128 %DEBUG% simpleclientHQ.exe
129 ) else if "!RUN_ARG!"=="mediaclient" (
130 cd %BUILD_DIR%\resource\examples
131 %DEBUG% mediaclient.exe
132 ) else if "!RUN_ARG!"=="mediaserver" (
133 cd %BUILD_DIR%\resource\examples
134 %DEBUG% mediaserver.exe
135 ) else if "!RUN_ARG!"=="winuiclient" (
136 cd %BUILD_DIR%\resource\examples
137 %DEBUG% winuiclient.exe
138 ) else if "!RUN_ARG!"=="occlient" (
139 cd %BUILD_DIR%\resource\csdk\stack\samples\linux\SimpleClientServer
140 %DEBUG% occlientbasicops.exe -u 0 -t 3 -c 1
141 ) else if "!RUN_ARG!"=="ocserver" (
142 cd %BUILD_DIR%\resource\csdk\stack\samples\linux\SimpleClientServer
143 %DEBUG% ocserverbasicops.exe
144 ) else if "!RUN_ARG!"=="provclient" (
145 cd %BUILD_DIR%\resource\csdk\security\provisioning\sample
146 %DEBUG% provisioningclient.exe
147 ) else if "!RUN_ARG!"=="justworks" (
148 cd %BUILD_DIR%\resource\csdk\security\provisioning\sample
149 %DEBUG% sampleserver_justworks.exe
150 ) else if "!RUN_ARG!"=="test" (
151 %DEBUG% %BUILD_DIR%\resource\csdk\connectivity\test\catests.exe
152 %DEBUG% %BUILD_DIR%\resource\csdk\stack\test\stacktests.exe
153 %DEBUG% %BUILD_DIR%\resource\csdk\stack\test\cbortests.exe
154 %DEBUG% %BUILD_DIR%\resource\csdk\security\unittest\unittest.exe
155 %DEBUG% %BUILD_DIR%\resource\csdk\security\provisioning\unittest\unittest.exe
156 %DEBUG% %BUILD_DIR%\resource\c_common\ocrandom\test\randomtests.exe
157 %DEBUG% %BUILD_DIR%\resource\c_common\oic_malloc\test\malloctests.exe
158 %DEBUG% %BUILD_DIR%\resource\c_common\oic_string\test\stringtests.exe
159 %DEBUG% %BUILD_DIR%\resource\c_common\oic_time\test\timetests.exe
160 %DEBUG% %BUILD_DIR%\resource\unittests\unittests.exe
161 ) else if "!RUN_ARG!"=="build" (
162 echo Starting IoTivity build with these options:
163 echo TARGET_OS=%TARGET_OS%
164 echo TARGET_ARCH=%TARGET_ARCH%
165 echo SECURED=%SECURED%
166 echo RELEASE=%RELEASE%
168 echo LOGGING=%LOGGING%
169 echo ROUTING=%ROUTING%
170 echo WITH_TCP=%WITH_TCP%
171 echo WITH_UPSTREAM_LIBCOAP=%WITH_UPSTREAM_LIBCOAP%
172 echo MULTIPLE_OWNER=%MULTIPLE_OWNER%
173 echo MSVC_VERSION=%MSVC_VERSION%
174 echo THREAD_COUNT=%THREAD_COUNT%
175 echo.scons VERBOSE=1 %BUILD_OPTIONS%
176 scons VERBOSE=1 %BUILD_OPTIONS%
177 ) else if "!RUN_ARG!"=="clean" (
178 scons VERBOSE=1 %BUILD_OPTIONS% -c clean
181 del extlibs\gtest\googletest*.lib
182 del extlibs\gtest\googletest-release-1.7.0\src\gtest*.obj
184 erase resource\c_common\iotivity_config.h
185 erase extlibs\libcoap\coap.lib
186 erase extlibs\libcoap\libcoap\include\coap\coap_config.h
187 erase extlibs\mbedtls\mbed*.lib
188 ) else if "!RUN_ARG!"=="cleangtest" (
189 rd /s /q extlibs\gtest\googletest-release-1.7.0
190 del extlibs\gtest\release-1.7.0.zip
192 echo.%0 - Script requires a valid argument!
203 echo %0 - Helper to build/test iotivity. Requires an argument.
204 echo Installation: Drop this into your iotivity root directory to use it.
206 echo. Default build settings are: debug binaries run unittests and no logging
208 echo. Default build parameters can be overridden using the following arguments
210 REM At a quick look, the "Build either amd64 or x86 architecture binaries" message
211 REM below seems out of alignment with the other messages underneath it. But, "^|"
212 REM gets echoed as a single character, so the messages are actually aligned correctly
213 REM in the output of "run.bat".
214 echo -arch [x86 ^| amd64] - Build either amd64 or x86 architecture binaries
216 echo -noTest - Don't run the unittests after building the binaries
218 echo -logging - Enable logging while building the binaries
220 echo -debugger - Debug the requested application
222 echo -release - Build release binaries
224 echo -threads [NUMBER_OF_THREADS] - Build in parallel using [NUMBER_OF_THREADS] threads. Default: %NUMBER_OF_PROCESSORS%.
226 echo -noTCP - Build with the TCP adapter disabled
228 echo -noSecurity - Remove security support (results in code that cannot be certified by OCF)
230 echo -noMOT - Remove Multiple Ownership Transfer support.
232 echo. Usage examples:
234 echo Launch SimpleClient with debugger:
235 echo %0 client -debugger
237 echo Launch SimpleServer:
240 echo Launch WinUIClient built in msys:
241 echo %0 msys winuiclient
243 echo Build amd64 debug binaries and run unit tests:
246 echo Build amd64 release binaries w/o running tests:
247 echo %0 build -arch amd64 -noTest -release
249 echo Build x86 debug binaries and run unit tests:
250 echo %0 build -arch x86
252 echo Build amd64 release binaries with logging enabled:
253 echo %0 build -arch amd64 -release -logging
255 echo Build using only one thread:
256 echo %0 build -threads 1
258 echo Build with TCP adapter disabled and run unit tests:
261 echo Build without security support and run unit tests:
262 echo %0 build -noSecurity
264 echo Build without Multiple Ownership Transfer support and run unit tests: