1
0
mirror of synced 2024-11-13 14:40:45 +01:00
OpenParrot/iDmacDrv/premake5.lua
2019-06-03 19:25:47 +03:00

30 lines
715 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:$(ProjectDir)/src/Source32.def" }
filter "platforms:x64"
targetsuffix "64"
linkoptions { "/DEF:$(ProjectDir)/src/Source64.def" }