Fixed libguichan deployment options in VisualGDB
Fixed output filename No need to deploy lib when cross-compiling
This commit is contained in:
parent
fc064bc5a9
commit
b16497b184
4 changed files with 32 additions and 7 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -30,4 +30,5 @@ VisualGDB/VisualGDB/Release/Amiberry
|
|||
VisualGDB/VisualGDB/Release/Amiberry-sdl2
|
||||
*.npa00-cfdc2249
|
||||
*.a
|
||||
*.npa00-f5145647
|
||||
*.npa00-f5145647
|
||||
VisualGDB/VisualGDB/Debug/Amiberry-sdl2
|
|
@ -31,6 +31,7 @@
|
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|VisualGDB'">
|
||||
<GNUConfigurationType>Debug</GNUConfigurationType>
|
||||
<Toolchain>C:\SysGCC\raspberry</Toolchain>
|
||||
<TargetName>$(ProjectName)-sdl2</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|VisualGDB'">
|
||||
<Toolchain>C:\SysGCC\raspberry</Toolchain>
|
||||
|
@ -38,10 +39,11 @@
|
|||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-rpi2|VisualGDB'">
|
||||
<Toolchain>C:\SysGCC\raspberry</Toolchain>
|
||||
<TargetName>$(ProjectName)-sdl2</TargetName>
|
||||
<TargetName>$(ProjectName)-sdl2-rpi2</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release-rpi1|VisualGDB'">
|
||||
<Toolchain>C:\SysGCC\raspberry</Toolchain>
|
||||
<TargetName>$(ProjectName)-sdl2-rpi1</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|VisualGDB'">
|
||||
<ClCompile>
|
||||
|
|
|
@ -6,11 +6,31 @@
|
|||
<Directories />
|
||||
<PathStyle>MinGWUnixSlash</PathStyle>
|
||||
</CustomSourceDirectories>
|
||||
<DeploymentHost>
|
||||
<HostName>192.168.1.152</HostName>
|
||||
<Transport>SSH</Transport>
|
||||
<UserName>pi</UserName>
|
||||
</DeploymentHost>
|
||||
<BuildHost>
|
||||
<Transport>None</Transport>
|
||||
</BuildHost>
|
||||
<MainSourceTransferCommand>
|
||||
<SkipWhenRunningCommandList>false</SkipWhenRunningCommandList>
|
||||
<RemoteHost>
|
||||
<Transport>None</Transport>
|
||||
</RemoteHost>
|
||||
<LocalDirectory>$(ProjectDir)</LocalDirectory>
|
||||
<RemoteDirectory>/tmp/VisualGDB/$(ProjectDirUnixStyle)</RemoteDirectory>
|
||||
<FileMasks>
|
||||
<string>*.cpp</string>
|
||||
<string>*.h</string>
|
||||
<string>*.c</string>
|
||||
<string>*.cc</string>
|
||||
<string>*.cxx</string>
|
||||
<string>*.mak</string>
|
||||
<string>Makefile</string>
|
||||
<string>*.txt</string>
|
||||
<string>*.cmake</string>
|
||||
</FileMasks>
|
||||
<TransferNewFilesOnly>true</TransferNewFilesOnly>
|
||||
<IncludeSubdirectories>true</IncludeSubdirectories>
|
||||
<DeleteDisappearedFiles>false</DeleteDisappearedFiles>
|
||||
</MainSourceTransferCommand>
|
||||
<AllowChangingHostForMainCommands>false</AllowChangingHostForMainCommands>
|
||||
<SkipBuildIfNoSourceFilesChanged>false</SkipBuildIfNoSourceFilesChanged>
|
||||
<IgnoreFileTransferErrors>false</IgnoreFileTransferErrors>
|
||||
|
|
|
@ -25,11 +25,13 @@
|
|||
<Toolchain>C:\SysGCC\raspberry</Toolchain>
|
||||
<GNUTargetType>StaticLibrary</GNUTargetType>
|
||||
<OutDir>..\..\src\guisan\lib</OutDir>
|
||||
<TargetName>libguisan</TargetName>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|VisualGDB'">
|
||||
<Toolchain>C:\SysGCC\raspberry</Toolchain>
|
||||
<GNUTargetType>StaticLibrary</GNUTargetType>
|
||||
<OutDir>..\..\src\guisan\lib</OutDir>
|
||||
<TargetName>libguisan</TargetName>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|VisualGDB'">
|
||||
<ClCompile>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue