mirror of
https://github.com/SpartanJ/eepp.git
synced 2026-05-28 17:16:29 +03:00
eepp: Removed PlusCallback dependency.
ecode: Added the possibility to search and replace by replacing captures from Lua Pattern, for example, searching for: "function (%w+)%(%)" and replacing for "fn $1()" will replace the function declaration from "function (functionName)()" to "fn (functionName)()". The feature was used to remove the PlusCallback dependency =).
This commit is contained in:
@@ -13,6 +13,7 @@ newoption { trigger = "with-mold-linker", description = "Tries to use the mold l
|
||||
newoption { trigger = "with-debug-symbols", description = "Release builds are built with debug symbols." }
|
||||
newoption { trigger = "thread-sanitizer", description = "Compile with ThreadSanitizer." }
|
||||
newoption { trigger = "address-sanitizer", description = "Compile with AddressSanitizer." }
|
||||
newoption { trigger = "time-trace", description = "Compile with time tracing." }
|
||||
newoption {
|
||||
trigger = "with-backend",
|
||||
description = "Select the backend to use for window and input handling.\n\t\t\tIf no backend is selected or if the selected is not installed the script will search for a backend present in the system, and will use it.",
|
||||
@@ -454,6 +455,10 @@ function parse_args()
|
||||
links { "asan" }
|
||||
end
|
||||
end
|
||||
|
||||
if _OPTIONS["time-trace"] then
|
||||
buildoptions { "-ftime-trace" }
|
||||
end
|
||||
end
|
||||
|
||||
function add_static_links()
|
||||
|
||||
Reference in New Issue
Block a user