1
0
mirror of synced 2024-11-14 23:07:36 +01:00
OpenParrot/iDmacDrv/premake5.lua
2019-05-04 14:24:53 -04:00

30 lines
705 B
Lua

project "iDmacDrv"
targetname "iDmacDrv"
language "C++"
kind "SharedLib"
files
{
"src/**.cpp", "src/**.h",
"deps/cpp/**.cpp", "deps/inc/**.h",
"src/iDmacDrv.rc"
}
includedirs { "src", }
prebuildcommands {
"if not exist $(TargetDir)output mkdir $(TargetDir)output",
}
postbuildcommands {
"if exist $(TargetDir)iDmacDrv32.dll xcopy /y $(TargetDir)iDmacDrv32.dll $(TargetDir)output\\",
"if exist $(TargetDir)iDmacDrv64.dll xcopy /y $(TargetDir)iDmacDrv64.dll $(TargetDir)output\\"
}
filter "platforms:x86"
targetsuffix "32"
linkoptions { "/DEF:iDmacDrv/src/Source32.def" }
filter "platforms:x64"
targetsuffix "64"
linkoptions { "/DEF:iDmacDrv/src/Source64.def" }