Skip to content

Commit

Permalink
Makeshadersinpremake
Browse files Browse the repository at this point in the history
Diffs=
a01b0467e Makeshadersinpremake (#7660)

Co-authored-by: Chris Dalton <99840794+csmartdalton@users.noreply.github.com>
  • Loading branch information
csmartdalton and csmartdalton committed Jul 23, 2024
1 parent 93014af commit 8e0d982
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .rive_head
Original file line number Diff line number Diff line change
@@ -1 +1 @@
114da4e39ba61dd337e8f6f47c1c7b2fb2223915
a01b0467e84045a47e1b9ccd9b4a84030d490e2e
8 changes: 4 additions & 4 deletions build/rive_build_config.lua
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ newoption({
description = 'Directory to generate build files',
default = nil,
})
RIVE_BUILD_OUT = _OPTIONS['out'] or ('out/' .. RIVE_BUILD_CONFIG)
RIVE_BUILD_OUT = _WORKING_DIR .. '/' .. (_OPTIONS['out'] or ('out/' .. RIVE_BUILD_CONFIG))

newoption({
trigger = 'toolset',
Expand Down Expand Up @@ -94,9 +94,9 @@ newoption({
description = 'Don\'t build with link time optimizations.',
})

location(_WORKING_DIR .. '/' .. RIVE_BUILD_OUT)
targetdir(_WORKING_DIR .. '/' .. RIVE_BUILD_OUT)
objdir(_WORKING_DIR .. '/' .. RIVE_BUILD_OUT .. '/obj')
location(RIVE_BUILD_OUT)
targetdir(RIVE_BUILD_OUT)
objdir(RIVE_BUILD_OUT .. '/obj')
toolset(_OPTIONS['toolset'] or 'clang')
language('C++')
cppdialect('C++17')
Expand Down

0 comments on commit 8e0d982

Please sign in to comment.