mirror of
https://github.com/XLabsProject/s1x-client.git
synced 2023-08-02 15:02:12 +02:00
33 lines
526 B
Lua
33 lines
526 B
Lua
wintoast = {
|
|
source = path.join(dependencies.basePath, "WinToast"),
|
|
}
|
|
|
|
function wintoast.import()
|
|
links { "WinToast" }
|
|
wintoast.includes()
|
|
end
|
|
|
|
function wintoast.includes()
|
|
includedirs {
|
|
path.join(wintoast.source, "src"),
|
|
}
|
|
end
|
|
|
|
function wintoast.project()
|
|
project "WinToast"
|
|
language "C++"
|
|
|
|
wintoast.includes()
|
|
rapidjson.import();
|
|
|
|
files {
|
|
path.join(wintoast.source, "src/*.h"),
|
|
path.join(wintoast.source, "src/*.cpp"),
|
|
}
|
|
|
|
warnings "Off"
|
|
kind "StaticLib"
|
|
end
|
|
|
|
table.insert(dependencies, wintoast)
|