@@ -28,6 +28,7 @@ md nupkg\build\native\lib
28
28
29
29
set arduinoSDKSources = ..\Arduino\hardware\arduino\cores\arduino
30
30
set arduinoLibrarySources = ..\Arduino\libraries
31
+ set arduinoVariantsSources = ..\Arduino\hardware\arduino\variants
31
32
32
33
if not exist %arduinoSDKSources% \Print.h (
33
34
echo The Arduino sources are not checked out. checking them out
@@ -47,14 +48,20 @@ copy Microsoft.IoT.Arduino.SDK.nuspec nupkg /y || goto err
47
48
copy Microsoft.IoT.Arduino.SDK.targets nupkg\build\native /y || goto err
48
49
49
50
if exist (*.h) copy *.h nupkg\build\native\include /y || goto err
51
+ copy %arduinoSDKSources% \Client.h nupkg\build\native\include /y || goto err
52
+ copy %arduinoSDKSources% \IPAddress.h nupkg\build\native\include /y || goto err
50
53
copy %arduinoSDKSources% \Print.h nupkg\build\native\include /y || goto err
51
54
copy %arduinoSDKSources% \Printable.h nupkg\build\native\include /y || goto err
55
+ copy %arduinoSDKSources% \Server.h nupkg\build\native\include /y || goto err
52
56
copy %arduinoSDKSources% \Stream.h nupkg\build\native\include /y || goto err
53
57
copy %arduinoSDKSources% \WString.h nupkg\build\native\include /y || goto err
58
+ copy %arduinoSDKSources% \Udp.h nupkg\build\native\include /y || goto err
54
59
copy %arduinoLibrarySources% \LiquidCrystal\LiquidCrystal.h nupkg\build\native\include /y || goto err
55
60
copy %arduinoLibrarySources% \Stepper\Stepper.h nupkg\build\native\include /y || goto err
61
+ copy %arduinoVariantsSources% \standard\pins_arduino.h nupkg\build\native\include /y || goto err
56
62
57
63
if exist (*.cpp) copy *.cpp nupkg\build\native\source /y || goto err
64
+ copy %arduinoSDKSources% \IPAddress.cpp nupkg\build\native\source /y || goto err
58
65
copy %arduinoSDKSources% \Print.cpp nupkg\build\native\source /y || goto err
59
66
copy %arduinoSDKSources% \Stream.cpp nupkg\build\native\source /y || goto err
60
67
copy %arduinoSDKSources% \WString.cpp nupkg\build\native\source /y || goto err
0 commit comments