Skip to content

Instantly share code, notes, and snippets.

@saccadic
Created November 2, 2020 00:50
Show Gist options
  • Save saccadic/b0f77fcf0adeae317a383f4310f69162 to your computer and use it in GitHub Desktop.
Save saccadic/b0f77fcf0adeae317a383f4310f69162 to your computer and use it in GitHub Desktop.
nnableのリリースとデバック両方をビルド
SET nnabla_build_folder_name=build
SET nnabla_root=./nnable
SET build_type=Release
call .\nnable\build-tools\msvc\build_cpplib.bat
call .\nnable-ext-cuda\build-tools\msvc\build_cpplib.bat
cd .\nnable
ren build build_Release
cd ..\
cd .\nnable-ext-cuda
ren build build_Release
cd ..\
SET build_type=Debug
call .\nnable\build-tools\msvc\build_cpplib.bat
call .\nnable-ext-cuda\build-tools\msvc\build_cpplib.bat
cd .\nnable
ren build build_Debug
cd ..\
cd .\nnable-ext-cuda
ren build build_Debug
cd ..\
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment