mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2025-08-04 14:45:32 +02:00
new premake project to build dos_stub_changer tool on windows
This commit is contained in:
parent
7bf59f16d0
commit
93436e1476
1 changed files with 28 additions and 0 deletions
28
premake5.lua
28
premake5.lua
|
@ -1117,6 +1117,34 @@ project "steamclient_experimental_loader_win"
|
||||||
}
|
}
|
||||||
-- End steamclient_experimental_loader_win
|
-- End steamclient_experimental_loader_win
|
||||||
|
|
||||||
|
|
||||||
|
-- Project file_dos_stub_changer
|
||||||
|
project "file_dos_stub_changer"
|
||||||
|
kind "ConsoleApp"
|
||||||
|
location "%{wks.location}/%{prj.name}"
|
||||||
|
targetdir("resources/win/file_dos_stub")
|
||||||
|
targetname "file_dos_stub_%{cfg.platform}"
|
||||||
|
|
||||||
|
|
||||||
|
-- include dir
|
||||||
|
---------
|
||||||
|
-- common include dir
|
||||||
|
filter {} -- reset the filter and remove all active keywords
|
||||||
|
includedirs {
|
||||||
|
common_include,
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
-- common source & header files
|
||||||
|
---------
|
||||||
|
filter {} -- reset the filter and remove all active keywords
|
||||||
|
files {
|
||||||
|
"resources/win/file_dos_stub/file_dos_stub.cpp",
|
||||||
|
"helpers/pe_helpers.cpp",
|
||||||
|
"helpers/common_helpers.cpp",
|
||||||
|
}
|
||||||
|
-- End file_dos_stub_changer
|
||||||
|
|
||||||
end
|
end
|
||||||
-- End WINDOWS ONLY TARGETS
|
-- End WINDOWS ONLY TARGETS
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue