-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature_new-modelwarping-config
- Loading branch information
Showing
251 changed files
with
8,146 additions
and
3,990 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
# `apps/`: OpenSim Creator's Executable Applications | ||
|
||
This directory contains the code behind the top-level application executables | ||
that users run. Generally speaking, this code is a thin layer around the | ||
`OpenSimCreator` and `oscar` library targets. | ||
|
||
| Directory | Description | Depends on | | ||
| - | - | - | | ||
| `osc/` | Handles the main OpenSim Creator UI binary that users typically boot into | `oscar`, `OpenSimCreator` | | ||
| `hellotriangle/` | A bare-minimum usage of `oscar`'s `App` and graphics stack, used by developers for testing minimum platform compliance | `oscar` | | ||
# `apps/`: OpenSim Creator's Executable Applications | ||
|
||
This directory contains the code behind the top-level application executables | ||
that users run. Generally speaking, this code is a thin layer around the | ||
`OpenSimCreator` and `oscar` library targets. | ||
|
||
| Directory | Description | Depends on | | ||
| - | - | - | | ||
| `osc/` | Handles the main user-facing OpenSim Creator UI binary (`osc.exe`) | `oscar`, `OpenSimCreator` | | ||
| `hellotriangle/` | Implements a minimal usage of `oscar`'s `App` and graphics stack, used to test platform compatiblity | `oscar` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Emscripten packaging | ||
|
||
# for now, just ensure that the html loader is next to the built js+wasm | ||
add_custom_command( | ||
TARGET hellotriangle | ||
PRE_BUILD | ||
COMMAND ${CMAKE_COMMAND} -E copy_if_different ${CMAKE_CURRENT_SOURCE_DIR}/Emscripten/hellotriangle.html $<TARGET_FILE_DIR:hellotriangle> | ||
COMMAND_EXPAND_LISTS | ||
) |
Oops, something went wrong.