Compare commits
31 Commits
75fdb7f526
...
bf32bf6169
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bf32bf6169 | ||
|
|
1038458333 | ||
|
|
43ad37cf79 | ||
|
|
bb13d697bd | ||
|
|
b3b380a262 | ||
|
|
9cbfbe7b0c | ||
|
|
fefcc07b8e | ||
|
|
64c0726e68 | ||
|
|
b5590f256c | ||
|
|
d7906a78e2 | ||
|
|
e92ec35b66 | ||
|
|
d4c3b6a806 | ||
|
|
55b4b254fd | ||
|
|
75a942979e | ||
|
|
37e2628e9a | ||
|
|
dcb04b52e0 | ||
|
|
452ff34c87 | ||
|
|
c9be2e2d62 | ||
|
|
df6d6effdc | ||
|
|
d68bd2270b | ||
|
|
794ad912d2 | ||
|
|
7c903de497 | ||
|
|
1820e0f6d4 | ||
|
|
867a37925e | ||
|
|
2a88a8c8a4 | ||
|
|
575866a667 | ||
| 856001c608 | |||
|
|
caf74c1f5a | ||
|
|
8b141d44bb | ||
|
|
6ab427abf1 | ||
|
|
30cf983116 |
32
README.md
32
README.md
@ -45,11 +45,10 @@ workdir/
|
|||||||
```
|
```
|
||||||
mkdir workdir
|
mkdir workdir
|
||||||
cd workdir
|
cd workdir
|
||||||
curl -LO https://downloads.bellarender.com/bella_engine_sdk-24.6.0.dmg
|
curl -LO https://downloads.bellarender.com/bella_engine_sdk-25.3.0-macos.zip
|
||||||
hdiutil attach bella_engine_sdk-24.6.0.dmg
|
unzip bella_engine_sdk-25.3.0-macos.zip
|
||||||
cp -R /Volumes/Bella\ Engine\ SDK\ 24.6.0/bella_engine_sdk .
|
git clone https://git.indoodle.com/oomer/oom.git
|
||||||
git clone https://github.com/oomer/oom.git
|
git clone https://git.indoodle.com/jason/poomer-bella-sine.git
|
||||||
git clone https://github.com/oomer/poomer-bella-sine.git
|
|
||||||
cd poomer-bella-sine
|
cd poomer-bella-sine
|
||||||
make all -j4
|
make all -j4
|
||||||
bin/Darwin/release/poomer-bella-sine -r
|
bin/Darwin/release/poomer-bella-sine -r
|
||||||
@ -61,17 +60,17 @@ open ./untitled.png
|
|||||||
sudo apt install -y build-essential curl
|
sudo apt install -y build-essential curl
|
||||||
mkdir workdir
|
mkdir workdir
|
||||||
cd workdir
|
cd workdir
|
||||||
curl -LO https://downloads.bellarender.com/bella_engine_sdk-24.6.0.tar.gz
|
curl -LO https://downloads.bellarender.com/bella_engine_sdk-25.3.0-linux.tar.gz
|
||||||
tar -xvf bella_engine_sdk-24.6.0.tar.gz
|
tar -xvf bella_engine_sdk-25.3.0.tar.gz
|
||||||
git clone https://github.com/oomer/oom.git
|
git clone https://git.indoodle.com/oomer/oom.git
|
||||||
git clone https://github.com/oomer/poomer-bella-sine.git
|
git clone https://git.indoodle.com/jason/poomer-bella-sine.git
|
||||||
cd poomer-bella-sine
|
cd poomer-bella-sine
|
||||||
make all -j4
|
make all -j4
|
||||||
bin/Linux/release/poomer-bella-sine -r
|
bin/Linux/release/poomer-bella-sine -r
|
||||||
file ./untitled.png
|
file ./untitled.png
|
||||||
```
|
```
|
||||||
|
|
||||||
## Windows (kasm-win11pro)
|
## Windows (win10 enterprise)
|
||||||
- [optioanl] Install https://git-scm.com
|
- [optioanl] Install https://git-scm.com
|
||||||
|
|
||||||
- Download Visual Studio Community Edition 2022
|
- Download Visual Studio Community Edition 2022
|
||||||
@ -82,13 +81,12 @@ file ./untitled.png
|
|||||||
Run **x64 Native Tools Command Prompt for VS 2022**
|
Run **x64 Native Tools Command Prompt for VS 2022**
|
||||||
```
|
```
|
||||||
cd %USERPROFILE%
|
cd %USERPROFILE%
|
||||||
mkdir workdir\bella_engine_sdk
|
mkdir workdir
|
||||||
cd workdir\bella_engine_sdk
|
cd workdir
|
||||||
curl -LO https://downloads.bellarender.com/bella_engine_sdk-24.6.0.zip
|
curl -LO https://downloads.bellarender.com/bella_engine_sdk-25.3.0-win32.zip
|
||||||
tar -xf bella_engine_sdk-24.6.0.zip
|
tar -xf bella_engine_sdk-25.3.0-win32.zip
|
||||||
cd ..
|
git clone https://git.indoodle.com/oomer/oom.git
|
||||||
git clone https://github.com/oomer/oom.git
|
git clone https://git.indoodle.com/jason/poomer-bella-sine.git
|
||||||
git clone https://github.com/oomer/poomer-bella-sine.git
|
|
||||||
cd poomer-bella-sine
|
cd poomer-bella-sine
|
||||||
msbuild poomer-bella-sine.vcxproj /p:Configuration=release /p:Platform=x64 /p:PlatformToolset=v143
|
msbuild poomer-bella-sine.vcxproj /p:Configuration=release /p:Platform=x64 /p:PlatformToolset=v143
|
||||||
x64\release\poomer-bella-sine.exe -r
|
x64\release\poomer-bella-sine.exe -r
|
||||||
|
|||||||
1
makefile
1
makefile
@ -97,6 +97,7 @@ $(OUTPUT_FILE): $(OBJECT_FILES)
|
|||||||
$(CXX) -o $@ $(OBJECT_FILES) $(LINKER_FLAGS) $(LIB_PATHS) $(LIBRARIES)
|
$(CXX) -o $@ $(OBJECT_FILES) $(LINKER_FLAGS) $(LIB_PATHS) $(LIBRARIES)
|
||||||
@echo "Copying libraries to $(BIN_DIR)..."
|
@echo "Copying libraries to $(BIN_DIR)..."
|
||||||
@cp $(SDK_LIB_PATH)/$(SDK_LIB_FILE) $(BIN_DIR)/$(SDK_LIB_FILE)
|
@cp $(SDK_LIB_PATH)/$(SDK_LIB_FILE) $(BIN_DIR)/$(SDK_LIB_FILE)
|
||||||
|
@cp -P $(SDK_LIB_PATH)/libdl_usd_ms.$(SDK_LIB_EXT) $(BIN_DIR)/ # copy libdl_usd_ms library file from bellangine_sdk to bin directory
|
||||||
@echo "Build complete: $(OUTPUT_FILE)"
|
@echo "Build complete: $(OUTPUT_FILE)"
|
||||||
|
|
||||||
# Add default target
|
# Add default target
|
||||||
|
|||||||
@ -99,6 +99,8 @@
|
|||||||
echo dl_core.dll copied &
|
echo dl_core.dll copied &
|
||||||
copy "$(ProjectDir)..\bella_engine_sdk\lib\dl_oidn_core.dll" "$(TargetDir)" &
|
copy "$(ProjectDir)..\bella_engine_sdk\lib\dl_oidn_core.dll" "$(TargetDir)" &
|
||||||
echo dl_oidn_core.dll copied &
|
echo dl_oidn_core.dll copied &
|
||||||
|
copy "$(ProjectDir)..\bella_engine_sdk\lib\dl_usd_ms.dll" "$(TargetDir)" &
|
||||||
|
echo dl_usd_ms.dll copied &
|
||||||
echo Post-build event finished</Command>
|
echo Post-build event finished</Command>
|
||||||
</PostBuildEvent>
|
</PostBuildEvent>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|||||||
BIN
res/DayEnvironmentHDRI019_1K-TONEMAPPED.jpg
Normal file
BIN
res/DayEnvironmentHDRI019_1K-TONEMAPPED.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 17 KiB |
Loading…
x
Reference in New Issue
Block a user