forked from NVIDIA-Omniverse/iot-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
premake5.lua
22 lines (16 loc) · 921 Bytes
/
premake5.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
-- Shared build scripts from repo_build package.
repo_build = require("omni/repo/build")
-- Repo root
root = repo_build.get_abs_path(".")
-- Set the desired MSVC, WINSDK, and MSBUILD versions before executing the kit template premake configuration.
MSVC_VERSION = "14.27.29110"
WINSDK_VERSION = "10.0.18362.0"
MSBUILD_VERSION = "Current"
-- Execute the kit template premake configuration, which creates the solution, finds extensions, etc.
dofile("_repo/deps/repo_kit_tools/kit-template/premake5.lua")
-- Example application that runs kit with the minimal set of extensions required to use the extension browser.
--define_app("omni.app.example.extension_browser")
-- Example application that runs kit with the minimal set of extensions required to use the viewport.
--define_app("omni.app.example.viewport")
-- The default kit dev app with extensions from this repo made available.
--define_app("omni.app.kit.dev")