mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
15 lines
418 B
Batchfile
15 lines
418 B
Batchfile
@echo off
|
|
|
|
if not defined DevEnvDir (
|
|
call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
|
|
)
|
|
|
|
rem debug: /Zi (== -g)
|
|
|
|
cl main.cpp ./core/settings.cpp ./core/request.cpp ./core/http_server.cpp ./core/file_cache.cpp ./core/application.cpp ./rdn_application.cpp ./core/theme.cpp ^
|
|
/Febin/game-vc.exe ^
|
|
/EHsc /std:c++17 ^
|
|
/Ilibs ^
|
|
/link WSock32.lib Ws2_32.lib
|
|
|