Initial commit: PrivateBin API C++ DLL implementation
This commit is contained in:
15
build.bat
Normal file
15
build.bat
Normal file
@ -0,0 +1,15 @@
|
||||
@echo off
|
||||
echo Building PrivateBin API C++ DLL...
|
||||
|
||||
REM Create build directory
|
||||
if not exist "build" mkdir build
|
||||
cd build
|
||||
|
||||
REM Generate build files with CMake
|
||||
cmake .. -G "Visual Studio 16 2019"
|
||||
|
||||
REM Build the project
|
||||
cmake --build . --config Release
|
||||
|
||||
echo Build completed!
|
||||
cd ..
|
||||
Reference in New Issue
Block a user