mirror of
https://github.com/dptech-corp/Uni-Lab-OS.git
synced 2025-12-14 13:14:39 +00:00
42 lines
1.1 KiB
Batchfile
42 lines
1.1 KiB
Batchfile
:: Generated by vinca http://github.com/RoboStack/vinca.
|
|
:: DO NOT EDIT!
|
|
setlocal EnableDelayedExpansion
|
|
|
|
set "PYTHONPATH=%LIBRARY_PREFIX%\lib\site-packages;%SP_DIR%"
|
|
|
|
:: MSVC is preferred.
|
|
set CC=cl.exe
|
|
set CXX=cl.exe
|
|
|
|
rd /s /q build
|
|
mkdir build
|
|
pushd build
|
|
|
|
:: set "CMAKE_GENERATOR=Ninja"
|
|
|
|
:: try to fix long paths issues by using default generator
|
|
set "CMAKE_GENERATOR=Visual Studio %VS_MAJOR% %VS_YEAR%"
|
|
set "SP_DIR_FORWARDSLASHES=%SP_DIR:\=/%"
|
|
|
|
set PYTHON="%PREFIX%\python.exe"
|
|
|
|
cmake ^
|
|
-G "%CMAKE_GENERATOR%" ^
|
|
-DCMAKE_INSTALL_PREFIX=%LIBRARY_PREFIX% ^
|
|
-DCMAKE_BUILD_TYPE=Release ^
|
|
-DCMAKE_INSTALL_SYSTEM_RUNTIME_LIBS_SKIP=True ^
|
|
-DPYTHON_EXECUTABLE=%PYTHON% ^
|
|
-DPython_EXECUTABLE=%PYTHON% ^
|
|
-DPython3_EXECUTABLE=%PYTHON% ^
|
|
-DSETUPTOOLS_DEB_LAYOUT=OFF ^
|
|
-DBUILD_SHARED_LIBS=ON ^
|
|
-DBUILD_TESTING=OFF ^
|
|
-DCMAKE_OBJECT_PATH_MAX=255 ^
|
|
-DPYTHON_INSTALL_DIR=%SP_DIR_FORWARDSLASHES% ^
|
|
--compile-no-warning-as-error ^
|
|
%SRC_DIR%\%PKG_NAME%\src\work
|
|
if errorlevel 1 exit 1
|
|
|
|
cmake --build . --config Release --target install
|
|
if errorlevel 1 exit 1
|