15 lines
277 B
Batchfile
15 lines
277 B
Batchfile
@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 .. |