Skip to content

Commit

Permalink
UTF-8
Browse files Browse the repository at this point in the history
  • Loading branch information
kuriho committed Jul 22, 2015
1 parent 3b12216 commit caf8ff7
Show file tree
Hide file tree
Showing 5 changed files with 166 additions and 0 deletions.
111 changes: 111 additions & 0 deletions Bakeneko/Bakeneko.vcxproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,111 @@
<?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup Label="ProjectConfigurations">
<ProjectConfiguration Include="Debug|Win32">
<Configuration>Debug</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
<ProjectConfiguration Include="Release|Win32">
<Configuration>Release</Configuration>
<Platform>Win32</Platform>
</ProjectConfiguration>
</ItemGroup>
<PropertyGroup Label="Globals">
<ProjectGuid>{0B69D8C6-E0B7-48FC-8244-6DAA5C5A6030}</ProjectGuid>
<Keyword>Bakeneko</Keyword>
<RootNamespace>Bakeneko</RootNamespace>
<TargetPlatformVersion>7</TargetPlatformVersion>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>false</UseDebugLibraries>
<PlatformToolset>v140</PlatformToolset>
<WholeProgramOptimization>true</WholeProgramOptimization>
<CharacterSet>Unicode</CharacterSet>
</PropertyGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
<ImportGroup Label="ExtensionSettings">
</ImportGroup>
<ImportGroup Label="Shared">
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
</ImportGroup>
<PropertyGroup Label="UserMacros" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<LinkIncremental>false</LinkIncremental>
</PropertyGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
<ClCompile>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<WarningLevel>Level3</WarningLevel>
<Optimization>Disabled</Optimization>
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<AdditionalOptions />
</Link>
</ItemDefinitionGroup>
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
<ClCompile>
<WarningLevel>Level3</WarningLevel>
<PrecompiledHeader>NotUsing</PrecompiledHeader>
<Optimization>MaxSpeed</Optimization>
<FunctionLevelLinking>true</FunctionLevelLinking>
<IntrinsicFunctions>true</IntrinsicFunctions>
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
</ClCompile>
<Link>
<SubSystem>Windows</SubSystem>
<GenerateDebugInformation>true</GenerateDebugInformation>
<EnableCOMDATFolding>true</EnableCOMDATFolding>
<OptimizeReferences>true</OptimizeReferences>
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="bakeneko\bakeneko.cpp" />
<ClCompile Include="bakeneko\data\data.cpp" />
<ClCompile Include="bakeneko\data\export.cpp" />
<ClCompile Include="bakeneko\api\jisho.cpp" />
<ClCompile Include="bakeneko\api\json.cpp" />
<ClCompile Include="bakeneko\api\net.cpp" />
<ClCompile Include="bakeneko\ui\taskbar.cpp" />
<ClCompile Include="bakeneko\ui\window.cpp" />
<ClCompile Include="main.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="bakeneko\bakeneko.h" />
<ClInclude Include="bakeneko\data\data.h" />
<ClInclude Include="bakeneko\data\export.h" />
<ClInclude Include="bakeneko\api\jisho.h" />
<ClInclude Include="bakeneko\api\json.h" />
<ClInclude Include="bakeneko\api\net.h" />
<ClInclude Include="bakeneko\resource.h" />
<ClInclude Include="bakeneko\ui\taskbar.h" />
<ClInclude Include="bakeneko\ui\window.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="bakeneko\Bakeneko.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="bakeneko\Chen.ico" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
55 changes: 55 additions & 0 deletions Bakeneko/Bakeneko.vcxproj.filters
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<Filter Include="Source Files">
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
<Extensions>cpp;c;cc;cxx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="main.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\bakeneko.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\api\jisho.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\api\json.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\api\net.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\data\data.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\data\export.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\ui\taskbar.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="bakeneko\ui\window.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="bakeneko\bakeneko.h" />
<ClInclude Include="bakeneko\api\jisho.h" />
<ClInclude Include="bakeneko\api\json.h" />
<ClInclude Include="bakeneko\api\net.h" />
<ClInclude Include="bakeneko\data\data.h" />
<ClInclude Include="bakeneko\data\export.h" />
<ClInclude Include="bakeneko\ui\taskbar.h" />
<ClInclude Include="bakeneko\ui\window.h" />
<ClInclude Include="bakeneko\resource.h" />
</ItemGroup>
<ItemGroup>
<ResourceCompile Include="bakeneko\Bakeneko.rc" />
</ItemGroup>
<ItemGroup>
<Image Include="bakeneko\Chen.ico" />
</ItemGroup>
</Project>
Binary file added Bakeneko/bakeneko/Bakeneko.rc
Binary file not shown.
Binary file added Bakeneko/bakeneko/Chen.ico
Binary file not shown.
Binary file modified Bakeneko/bakeneko/resource.h
Binary file not shown.

0 comments on commit caf8ff7

Please sign in to comment.