File tree 1 file changed +6
-2
lines changed
1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -1195,16 +1195,20 @@ if enableEmbedStdLib then
1195
1195
local absDirectory = path .getabsolute (" source/slang" )
1196
1196
local absOutputPath = absDirectory .. " /slang-stdlib-generated.h"
1197
1197
1198
+ -- I don't know why I need a filter, but without it nothing works (!)
1199
+ filter (" files:source/slang/slang-stdlib-api.cpp" )
1198
1200
-- Note! Has to be an absolute path else doesn't work(!)
1199
1201
buildoutputs { absOutputPath }
1200
1202
local f = getWinArm64Filter (true )
1203
+ table.insert (f , " files:source/slang/slang-stdlib-api.cpp" )
1201
1204
filter (f )
1202
1205
buildinputs { ' "' .. getWinArm64BuildDir (true ) .. ' /slangc-bootstrap"' .. executableSuffix }
1203
- buildcommands {' "' .. getWinArm64BuildDir (true ) .. ' /slangc-bootstrap" -archive-type riff-lz4 -save-stdlib-bin-source ' .. absOutputPath }
1206
+ buildcommands {' "' .. getWinArm64BuildDir (true ) .. ' /slangc-bootstrap" -archive-type riff-lz4 -save-stdlib-bin-source "%{file.directory}/slang-stdlib-generated.h" ' }
1204
1207
f = getWinArm64Filter (false )
1208
+ table.insert (f , " files:source/slang/slang-stdlib-api.cpp" )
1205
1209
filter (f )
1206
1210
buildinputs { " %{cfg.targetdir}/slangc-bootstrap" .. executableSuffix }
1207
- buildcommands { ' "%{cfg.targetdir}/slangc-bootstrap" -archive-type riff-lz4 -save-stdlib-bin-source "' .. absOutputPath .. ' "' }
1211
+ buildcommands { ' "%{cfg.targetdir}/slangc-bootstrap" -archive-type riff-lz4 -save-stdlib-bin-source "%{file.directory}/slang-stdlib-generated.h "' }
1208
1212
end
1209
1213
1210
1214
You can’t perform that action at this time.
0 commit comments