mirror of
https://github.com/intrepidcs/libicsneo.git
synced 2026-08-05 09:28:40 +02:00
This fixes the use case of adding the include folder manually to an outside project.
7 lines
236 B
Batchfile
7 lines
236 B
Batchfile
@setlocal
|
|
@set std=%1
|
|
@if not "%std%"=="" set std=-std:%std%
|
|
clang-cl -m32 -W3 -EHsc %std% -Doptional_CONFIG_SELECT_OPTIONAL=optional_OPTIONAL_NONSTD -I../include -I. optional-main.t.cpp optional.t.cpp && optional-main.t.exe
|
|
@endlocal
|
|
|