fix directxtk (#1438)

pull/1440/head
ruki 2 years ago committed by GitHub
parent 7695762a70
commit b405a398e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      packages/d/directxtk/xmake.lua

@ -28,6 +28,9 @@ package("directxtk")
end end
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF")) table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release")) table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
-- fix path issue with spaces
io.replace("Src/Shaders/CompileShaders.cmd", " %1.hlsl ", " \"%1.hlsl\" ", {plain = true})
io.replace("Src/Shaders/CompileShaders.cmd", " %1.fx ", " \"%1.fx\" ", {plain = true})
import("package.tools.cmake").install(package, configs) import("package.tools.cmake").install(package, configs)
os.cp("Inc/*", package:installdir("include")) os.cp("Inc/*", package:installdir("include"))
end) end)

Loading…
Cancel
Save