You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

compileSNFMultiDLL.cmd 1.5KB

1234567891011121314151617181920212223242526272829
  1. REM set path=c:\MinGW-64\bin;%path%
  2. REM set CXX=x86_64-pc-mingw32-c++
  3. set path=c:\Program Files\MinGW-W64\x86_64-8.1.0-posix-seh-rt_v6-rev0\mingw64\bin;%path%
  4. set CXX=c++
  5. set CXXFLAGS=-I../CodeDweller -I../SNFMulti -mthreads -O3
  6. del *.o
  7. %CXX% %CXXFLAGS% -c ../SNFMulti/FilterChain.cpp -o FilterChain.o
  8. %CXX% %CXXFLAGS% -c ../SNFMulti/GBUdb.cpp -o GBUdb.o
  9. %CXX% %CXXFLAGS% -c ../SNFMulti/scanner.cpp -o scanner.o
  10. %CXX% %CXXFLAGS% -c ../SNFMulti/snfCFGmgr.cpp -o snfCFGmgr.o
  11. %CXX% %CXXFLAGS% -c ../SNFMulti/snfGBUdbmgr.cpp -o snfGBUdbmgr.o
  12. %CXX% %CXXFLAGS% -c ../SNFMulti/snfLOGmgr.cpp -o snfLOGmgr.o
  13. %CXX% %CXXFLAGS% -c ../SNFMulti/SNFMulti.cpp -o SNFMulti.o
  14. %CXX% %CXXFLAGS% -c ../SNFMultiDll/snfmultidll.cpp -I../include -o snfmultidll.o
  15. %CXX% %CXXFLAGS% -c ../SNFMulti/snfNETmgr.cpp -o snfNETmgr.o
  16. %CXX% %CXXFLAGS% -c ../SNFMulti/snfXCImgr.cpp -o snfXCImgr.o
  17. %CXX% %CXXFLAGS% -c ../SNFMulti/snf_engine.cpp -o snf_engine.o
  18. %CXX% %CXXFLAGS% -c ../SNFMulti/snf_HeaderFinder.cpp -o snf_HeaderFinder.o
  19. %CXX% %CXXFLAGS% -c ../SNFMulti/snf_sync.cpp -o snf_sync.o
  20. %CXX% %CXXFLAGS% -c ../SNFMulti/snf_xci.cpp -o snf_xci.o
  21. %CXX% %CXXFLAGS% -c ../CodeDweller/base64codec.cpp -o base64codec.o
  22. %CXX% %CXXFLAGS% -c ../CodeDweller/configuration.cpp -o configuration.o
  23. %CXX% %CXXFLAGS% -c ../CodeDweller/mangler.cpp -o mangler.o
  24. %CXX% %CXXFLAGS% -c ../CodeDweller/networking.cpp -o networking.o
  25. %CXX% %CXXFLAGS% -c ../CodeDweller/threading.cpp -o threading.o
  26. %CXX% %CXXFLAGS% -c ../CodeDweller/timing.cpp -o timing.o