mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-05 19:42:36 +02:00
GP-1106: Platform naming convention now supports different
architectures. Support for building on ARM.
This commit is contained in:
parent
b55d1049d4
commit
00533b2869
43 changed files with 523 additions and 461 deletions
|
@ -44,7 +44,7 @@
|
|||
<ReferencePath>$(VCInstallDir)lib\amd64;</ReferencePath>
|
||||
<SourcePath />
|
||||
<ExcludePath>$(VCInstallDir)include;$(VCInstallDir)lib\amd64</ExcludePath>
|
||||
<OutDir>$(SolutionDir)..\..\build\os\win64\</OutDir>
|
||||
<OutDir>$(SolutionDir)..\..\build\os\win_x86_64\</OutDir>
|
||||
<IntDir>$(SolutionDir)..\..\build\tmp\pdb\$(Platform)\$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
|
@ -53,7 +53,7 @@
|
|||
<ReferencePath>$(VCInstallDir)lib\amd64</ReferencePath>
|
||||
<SourcePath />
|
||||
<ExcludePath>$(VCInstallDir)include;$(WindowsSDK_IncludePath);$(MSBuildToolsPath);$(MSBuildToolsPath32);$(VCInstallDir)lib\amd64;</ExcludePath>
|
||||
<OutDir>$(SolutionDir)..\..\build\os\win64\</OutDir>
|
||||
<OutDir>$(SolutionDir)..\..\build\os\win_x86_64\</OutDir>
|
||||
<IntDir>$(SolutionDir)..\..\build\tmp\pdb\$(Platform)\$(Configuration)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
|
@ -74,9 +74,9 @@
|
|||
<Command>
|
||||
rem copy /y /v /b "$(VSInstallDir)DIA SDK\bin\amd64\msdia*.dll" "$(OutDir)"
|
||||
set OS_DIR=$(SolutionDir)..\..\os
|
||||
if exist "%OS_DIR%\win64" (
|
||||
if exist "%OS_DIR%\win_x86_64" (
|
||||
mkdir "%OS_DIR%"
|
||||
mkdir "%OS_DIR%\win64"
|
||||
mkdir "%OS_DIR%\win_x86_64"
|
||||
xcopy /Y /S "$(OutDir)" "%OS_DIR%"
|
||||
)
|
||||
</Command>
|
||||
|
@ -107,9 +107,9 @@ if exist "%OS_DIR%\win64" (
|
|||
<Command>
|
||||
rem copy /y /v /b "$(VSInstallDir)DIA SDK\bin\amd64\msdia*.dll" "$(OutDir)"
|
||||
set OS_DIR=$(SolutionDir)..\..\os
|
||||
if exist "%OS_DIR%\win64" (
|
||||
if exist "%OS_DIR%\win_x86_64" (
|
||||
mkdir "%OS_DIR%"
|
||||
mkdir "%OS_DIR%\win64"
|
||||
mkdir "%OS_DIR%\win_x86_64"
|
||||
xcopy /Y /S "$(OutDir)" "%OS_DIR%"
|
||||
)
|
||||
</Command>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue