mirror of
https://github.com/beefytech/Beef.git
synced 2025-07-06 08:15:59 +02:00
Fixed build paths, added comparison warnings, other misc fixes
This commit is contained in:
parent
dae5c6cee4
commit
f4c252048e
19 changed files with 231 additions and 49 deletions
12
extern/hunspell/src/win_api/libhunspell.vcxproj
vendored
12
extern/hunspell/src/win_api/libhunspell.vcxproj
vendored
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug_dll|Win32">
|
||||
|
@ -125,11 +125,11 @@
|
|||
<_ProjectFileVersion>14.0.22823.1</_ProjectFileVersion>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<OutDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</OutDir>
|
||||
<OutDir>$(SolutionDir)\ide\dist\$(Platform)\$(Configuration)\</OutDir>
|
||||
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<OutDir>$(SolutionDir)$(Configuration)\$(ProjectName)\</OutDir>
|
||||
<OutDir>$(SolutionDir)\ide\dist\$(Platform)\$(Configuration)\</OutDir>
|
||||
<IntDir>$(Configuration)\$(ProjectName)\</IntDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release_dll|Win32'">
|
||||
|
@ -148,6 +148,12 @@
|
|||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug_dll|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<OutDir>$(SolutionDir)\ide\dist\$(Platform)\$(Configuration)\</OutDir>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<OutDir>$(SolutionDir)\ide\dist\$(Platform)\$(Configuration)\</OutDir>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<Optimization>Disabled</Optimization>
|
||||
|
|
14
extern/llvm_build.bat
vendored
14
extern/llvm_build.bat
vendored
|
@ -1,4 +1,6 @@
|
|||
@IF EXIST llvm-project GOTO LLVM_HAS
|
||||
PUSHD %~dp0..\
|
||||
|
||||
@IF EXIST llvm-project_8_0_1 GOTO LLVM_HAS
|
||||
git clone --config core.autocrlf=false https://github.com/llvm/llvm-project.git llvm-project_8_0_1
|
||||
pushd llvm-project_8_0_1
|
||||
GOTO :LLVM_SET
|
||||
|
@ -24,3 +26,13 @@ cd llvm_win64_8_0_1
|
|||
:DOBUILD
|
||||
cmake --build . --config Debug
|
||||
cmake --build . --config Release
|
||||
|
||||
:SUCCESS
|
||||
@ECHO SUCCESS!
|
||||
@POPD
|
||||
@EXIT /b 0
|
||||
|
||||
:HADERROR
|
||||
@ECHO =================FAILED=================
|
||||
@POPD
|
||||
@EXIT /b %ERRORLEVEL%
|
Loading…
Add table
Add a link
Reference in a new issue