mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Add new C# sample which allow to render the OCCT scene to a Direct3D context in a WPF application. DirectX SDK is required in order to build this sample.
14 lines
414 B
Batchfile
14 lines
414 B
Batchfile
@echo off
|
|
|
|
if NOT DEFINED DXSDK_DIR (
|
|
echo ERROR: DirectX SDK is required in order to build the sample but it is not found in your system. Please install DirectX SDK and retry.
|
|
exit /B
|
|
)
|
|
|
|
call "%~dp0..\..\env.bat" %1 %2 %3
|
|
|
|
if ["%CASDEB%"] == [""] (
|
|
call "%~dp0..\..\msvc.bat" %VCVER% win%ARCH% Release %~dp0\CSharp_D3D.sln
|
|
) else (
|
|
call "%~dp0..\..\msvc.bat" %VCVER% win%ARCH% Debug %~dp0\CSharp_D3D.sln
|
|
) |