added vcxproj

This commit is contained in:
Jason Ly 2025-10-10 22:56:23 -04:00
parent 6e71e8b202
commit 25f9a0eaf9
3 changed files with 122 additions and 4 deletions

View File

@ -76,7 +76,7 @@ curl -LO https://downloads.bellarender.com/bella_engine_sdk-25.3.0-win32.zip
tar -xf bella_engine_sdk-25.3.0-win32.zip
git clone https://git.indoodle.com/jason/joomer-bella-basic-renderer.git
cd joomer-bella-basic-renderer
set PATH=%PATH%;bella_engine_sdk\lib # need to create a makefile so that this is unnecessary
set PATH=%PATH%;bella_engine_sdk\lib
joomer-bella-basic-renderer.exe
start mspaint joomer-bella-basic-renderer.png
```

View File

@ -1,6 +1,6 @@
#include "bella_engine_sdk/src/bella_sdk/bella_engine.h" // Core rendering engine
#include "bella_engine_sdk/src/bella_sdk/bella_scene.h" // Scene management
#include "bella_engine_sdk/src/dl_core/dl_logging.h" // Logging utilities
#include "bella_sdk/bella_engine.h" // Core rendering engine
#include "bella_sdk/bella_scene.h" // Scene management
#include "dl_core/dl_logging.h" // Logging utilities
#include <thread> // For std::this_thread (C++ standard library)
#include <chrono> // For timing operations (C++ standard library)

View File

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="17.0">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|x64">
<Configuration>Debug</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|x64">
<Configuration>Release</Configuration>
<Platform>x64</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<VCProjectVersion>17.0</VCProjectVersion>
<ProjectGuid>{95AC52A8-F937-42CF-9C52-54E96F9243ED}</ProjectGuid>
<Keyword>Win32Proj</Keyword>
<RootNamespace>joomerbellabasicrenderer</RootNamespace>
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v143</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings" />
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)'=='Debug' and '$(Platform)'=='x64'">
<LinkIncremental>true</LinkIncremental>
<OutDir>$(SolutionDir)bin\$(Configuration)\</OutDir>
<IntDir>$(SolutionDir)obj\$(Configuration)\</IntDir>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)'=='Debug' and '$(Platform)'=='x64'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<SDLCheck>true</SDLCheck>
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
<ConformanceMode>true</ConformanceMode>
<LanguageStandard>stdcpp17</LanguageStandard>
<AdditionalIncludeDirectories>..\bella_engine_sdk\src;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
</ClCompile>
<Link>
<SubSystem>Console</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalLibraryDirectories>..\bella_engine_sdk\lib;%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
<AdditionalDependencies>bella_engine_sdk.lib;kernel32.lib;user32.lib;gdi32.lib;winspool.lib;comdlg32.lib;advapi32.lib;shell32.lib;ole32.lib;oleaut32.lib;uuid.lib;odbc32.lib;odbccp32.lib;%(AdditionalDependencies)</AdditionalDependencies>
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup>
<PostBuildEvent>
<Command>echo Post-build event started &amp;
copy "$(ProjectDir)..\bella_engine_sdk\lib\bella_engine_sdk.dll" "$(TargetDir)" &amp;
echo bella_engine_sdk.dll copied &amp;
copy "$(ProjectDir)..\bella_engine_sdk\lib\dl_core.dll" "$(TargetDir)" &amp;
echo dl_core.dll copied &amp;
copy "$(ProjectDir)..\bella_engine_sdk\lib\dl_oidn_core.dll" "$(TargetDir)" &amp;
echo dl_oidn_core.dll copied &amp;
copy "$(ProjectDir)..\bella_engine_sdk\lib\dl_usd_ms.dll" "$(TargetDir)" &amp;
echo dl_usd_ms.dll copied &amp;
echo Post-build event finished</Command>
</PostBuildEvent>
</ItemDefinitionGroup>
<ItemGroup>
<ClInclude Include="..\bella_engine_sdk\src\bella_sdk\api.h" />
<ClInclude Include="..\bella_engine_sdk\src\bella_sdk\bella_engine.h" />
<ClInclude Include="..\bella_engine_sdk\src\bella_sdk\bella_nodeapi.h" />
<ClInclude Include="..\bella_engine_sdk\src\bella_sdk\bella_scene.h" />
<ClInclude Include="..\bella_engine_sdk\src\bella_sdk\bella_sceneapi.h" />
<ClInclude Include="..\bella_engine_sdk\src\bella_sdk\bella_types.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\api.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_args.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_array.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_compress.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_defines.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_file.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_fs.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_hash.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_hashmap.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_hw.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_licensing.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_logging.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_main.inl" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_math.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_nullable.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_os.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_path.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_pcgrng.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_platform.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_references.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_refvector.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_string.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_stringio.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_time.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_topomap.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_types.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_vector.h" />
<ClInclude Include="..\bella_engine_sdk\src\dl_core\dl_version.h" />
</ItemGroup>
<ItemGroup>
<ClCompile Include="joomer-bella-basic-renderer.cpp" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets" />
</Project>