基于C++ Coroutines提案 ‘Stackless Resumable Functions’编写的协程库
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.

build_vs2019.bat 456B

1234567891011121314151617181920
  1. @echo off
  2. if exist build rmdir /S /Q build
  3. if not exist lib mkdir lib
  4. if not exist lib\x64_Debug mkdir lib\x64_Debug
  5. if not exist lib\x64_Release mkdir lib\x64_Release
  6. mkdir build
  7. cd build
  8. cmake ..
  9. msbuild librf.sln /p:Configuration=Debug /p:Platform=x64 /m
  10. msbuild librf.sln /p:Configuration=Release /p:Platform=x64 /m
  11. xcopy /Y Debug\librf.* ..\lib\x64_Debug\
  12. xcopy /Y Release\librf.* ..\lib\x64_Release\
  13. cd ..
  14. rmdir /S /Q build