We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5027e7 commit 446946eCopy full SHA for 446946e
packages/e/eastl/xmake.lua
@@ -36,7 +36,7 @@ endif()]], {plain = true})
36
io.replace("CMakeLists.txt", "add_subdirectory(test/packages/EABase)", "", {plain = true})
37
io.replace("CMakeLists.txt", "target_link_libraries(EASTL EABase)", "", {plain = true})
38
local configs = {"-DEASTL_BUILD_TESTS=OFF", "-DEASTL_BUILD_BENCHMARK=OFF"}
39
- table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:debug() and "Debug" or "Release"))
+ table.insert(configs, "-DCMAKE_BUILD_TYPE=" .. (package:is_debug() and "Debug" or "Release"))
40
if not package:is_plat("windows") then
41
table.insert(configs, "-DBUILD_SHARED_LIBS=" .. (package:config("shared") and "ON" or "OFF"))
42
end
0 commit comments