text
stringlengths
0
834k
cd ..\..
cmake .. -A %PLATFORM% -DSPM_BUILD_TEST=ON -DSPM_ENABLE_SHARED=ON -DCMAKE_INSTALL_PREFIX=%LIBRARY_PATH% -DBUILD_SHARED_LIBS=true -DSPM_ENABLE_SHARED=true -DSPM_ENABLE_SHARED_MINEXPORT=ON
rem cmake .. -A %PLATFORM% -DSPM_BUILD_TEST=ON -DSPM_ENABLE_SHARED=OFF -DCMAKE_INSTALL_PREFIX=%LIBRARY_PATH%
cmake --build . --config Release --target install || goto :error
ctest -C Release || goto :error
cpack || goto :error
cd ..\python
rem call :BuildPython C:\Python27%PLATFORM_PREFIX%
call :BuildPython C:\Python35%PLATFORM_PREFIX%
call :BuildPython C:\Python36%PLATFORM_PREFIX%
call :BuildPython C:\Python37%PLATFORM_PREFIX%
c:\Python37%PLATFORM_PREFIX%\python setup.py sdist || goto :error
exit
:BuildPython
%1\python -m pip install wheel || goto :error
%1\python setup.py build || goto :error
%1\python setup.py bdist_wheel || goto :error
%1\python setup.py test || goto :error
rmdir /Q /S build
del /S *.pyd
exit /b
:error
exit /b %errorlevel%
",43.8571428571,187,0.7609934853
67,d008358832818dfee7675cef7033dda4c38c54db,100,bat,Batchfile,05_compose/Package.bat,ustutz/MostlyAdequateGuide,46231b6bb5d88c7b1d8df7012252fca4aedfb6a5,['MIT'],,,,05_compose/Package.bat,ustutz/MostlyAdequateGuide,46231b6bb5d88c7b1d8df7012252fca4aedfb6a5,['MIT'],,,,05_compose/Package.bat,ustutz/MostlyAdequateGuide,46231b6bb5d88c7b1d8df7012252fca4aedfb6a5,['MIT'],,,,"@echo off
cd bin
echo Creating standalone command line executable...
nekotools boot Compose.n
pause
",16.6666666667,51,0.81
68,d00864e863fad0edb4d6f710634b6b64ea8aeac9,121,bat,Batchfile,build-win64.bat,claremacrae/example-poco-timer,b144af79b5ef79f7aa572481d8335106d0b40860,['MIT'],,,,build-win64.bat,claremacrae/example-poco-timer,b144af79b5ef79f7aa572481d8335106d0b40860,['MIT'],,,,build-win64.bat,claremacrae/example-poco-timer,b144af79b5ef79f7aa572481d8335106d0b40860,['MIT'],,,,"mkdir build64
cd build64
conan install ..
cmake .. -G ""Visual Studio 15 2017 Win64""
cmake --build . --config release
",20.1666666667,42,0.7024793388
69,d0087409eea575e392dbd65d70a79775ad2ae4cd,48,bat,Batchfile,build-normal.bat,itsjaylen/SchoolExploits,af93ce7fa160535da012dde2b7c1d16c6777c5bc,['MIT'],,,,build-normal.bat,itsjaylen/SchoolExploits,af93ce7fa160535da012dde2b7c1d16c6777c5bc,['MIT'],,,,build-normal.bat,itsjaylen/SchoolExploits,af93ce7fa160535da012dde2b7c1d16c6777c5bc,['MIT'],,,,"@echo off
pyinstaller main.py --onefile -- clean",24.0,38,0.75
70,d0087e85dbbe89ced41cbe2a5203ab64392b4fc9,79,bat,Batchfile,examples/parse-leaderboard/post-load.bat,MollyJameson/phaser3-rex-notes,f4ae48843c3c4a6578cbe5a6b6afab301768a3d2,['MIT'],888.0,2018-03-29T05:11:21.000Z,2022-03-31T14:02:58.000Z,examples/parse-leaderboard/post-load.bat,MollyJameson/phaser3-rex-notes,f4ae48843c3c4a6578cbe5a6b6afab301768a3d2,['MIT'],194.0,2018-07-20T07:39:24.000Z,2022-03-31T23:08:01.000Z,examples/parse-leaderboard/post-load.bat,MollyJameson/phaser3-rex-notes,f4ae48843c3c4a6578cbe5a6b6afab301768a3d2,['MIT'],262.0,2018-05-17T06:45:48.000Z,2022-03-24T11:48:52.000Z,"set main=./examples/parse-leaderboard/post-load.js
cd ..
cd ..
npm run watch",19.75,51,0.7088607595
71,d008878e55fa0118131cc59990a7098f42dfd641,2410,bat,Batchfile,samples/cpp_VS2005/NonTableManagerSamples/JoinExistingGroup/fxbuild.bat,holgafx/gehtsoft,7bb1dfc23d3b5b45793a85e162bbed2ca963d3ed,['Apache-2.0'],26.0,2018-01-11T16:46:15.000Z,2021-05-15T17:20:19.000Z,samples/cpp_VS2005/NonTableManagerSamples/JoinExistingGroup/fxbuild.bat,Trading-Lab/Forex-Connect-API-FXCM,0f1b2d0e8ca972ddc83b01acdb74e75d3aef9bf7,['Apache-2.0'],5.0,2019-03-07T16:14:59.000Z,2020-06-10T02:35:04.000Z,samples/cpp_VS2005/NonTableManagerSamples/JoinExistingGroup/fxbuild.bat,Trading-Lab/Forex-Connect-API-FXCM,0f1b2d0e8ca972ddc83b01acdb74e75d3aef9bf7,['Apache-2.0'],26.0,2017-11-01T19:20:30.000Z,2022-02-10T22:10:00.000Z,"@echo off
set build_config=Release
set tgt_platform=x86
rem --------------------------------------------------------------------------------------------
rem Parse command line argument values.
rem Note: For ambiguous arguments the last one wins (ex: debug release)
rem --------------------------------------------------------------------------------------------
:Parse_Args
@IF /I ""%~1""==""Debug"" SET ""build_config=Debug"" & SHIFT & GOTO Parse_Args
@IF /I ""%~1""==""Release"" SET ""build_config=Release"" & SHIFT & GOTO Parse_Args
@IF /I ""%~1""==""x86"" SET ""tgt_platform=x86"" & SHIFT & GOTO Parse_Args
@IF /I ""%~1""==""x64"" SET ""tgt_platform=x64"" & SHIFT & GOTO Parse_Args
@IF /I ""%~1""==""/?"" GOTO Error_Usage
@IF ""x%~1""==""x"" GOTO Done_Args
ECHO Unknown command-line switch: %~1
GOTO Error_Usage
:Done_Args
@echo build_config=%build_config% %conf_suffix%
@if /i ""%tgt_platform%""==""x86"" (
set local_tgt_platform=Win32
) else (
set local_tgt_platform=x64
)
:VS80
@if /i ""%VS80COMNTOOLS%"" == """" (
@echo Variable VS80COMNTOOLS is not set or contains wrong path. Checking VS100COMNTOOLS...
goto VS100
)
call :unquoteStr ENV_SETUP ""%VS80COMNTOOLS%vsvars32.bat""
goto BUILD
:VS100
@if /i ""%VS100COMNTOOLS%"" == """" (
@echo Variable VS100COMNTOOLS is not set or contains wrong path.
goto ENV_ERR
)
call :unquoteStr ENV_SETUP ""%VS100COMNTOOLS%vsvars32.bat""
goto BUILD
:BUILD
@echo Using ""%ENV_SETUP%"" environment configuration script.
call ""%ENV_SETUP%""
call vcbuild JoinExistingGroup.vcproj ""%build_config%|%local_tgt_platform%""
@goto :eof
:ENV_ERR
echo Can not setup visual studio environment.