update for fit-content
This commit is contained in:
parent
f45762fdb0
commit
57ae7822c8
@ -113,6 +113,7 @@
|
|||||||
<Unit filename="../../source/paint/image_process_selector.cpp" />
|
<Unit filename="../../source/paint/image_process_selector.cpp" />
|
||||||
<Unit filename="../../source/paint/pixel_buffer.cpp" />
|
<Unit filename="../../source/paint/pixel_buffer.cpp" />
|
||||||
<Unit filename="../../source/paint/text_renderer.cpp" />
|
<Unit filename="../../source/paint/text_renderer.cpp" />
|
||||||
|
<Unit filename="../../source/stdc++.cpp" />
|
||||||
<Unit filename="../../source/system/dataexch.cpp" />
|
<Unit filename="../../source/system/dataexch.cpp" />
|
||||||
<Unit filename="../../source/system/platform.cpp" />
|
<Unit filename="../../source/system/platform.cpp" />
|
||||||
<Unit filename="../../source/system/shared_wrapper.cpp" />
|
<Unit filename="../../source/system/shared_wrapper.cpp" />
|
||||||
|
|||||||
@ -249,6 +249,7 @@
|
|||||||
<ClCompile Include="..\..\source\paint\image_process_selector.cpp" />
|
<ClCompile Include="..\..\source\paint\image_process_selector.cpp" />
|
||||||
<ClCompile Include="..\..\source\paint\pixel_buffer.cpp" />
|
<ClCompile Include="..\..\source\paint\pixel_buffer.cpp" />
|
||||||
<ClCompile Include="..\..\source\paint\text_renderer.cpp" />
|
<ClCompile Include="..\..\source\paint\text_renderer.cpp" />
|
||||||
|
<ClCompile Include="..\..\source\stdc++.cpp" />
|
||||||
<ClCompile Include="..\..\source\system\dataexch.cpp" />
|
<ClCompile Include="..\..\source\system\dataexch.cpp" />
|
||||||
<ClCompile Include="..\..\source\system\platform.cpp" />
|
<ClCompile Include="..\..\source\system\platform.cpp" />
|
||||||
<ClCompile Include="..\..\source\system\shared_wrapper.cpp" />
|
<ClCompile Include="..\..\source\system\shared_wrapper.cpp" />
|
||||||
|
|||||||
@ -324,6 +324,9 @@
|
|||||||
<ClCompile Include="..\..\source\gui\detail\bedrock_windows.cpp">
|
<ClCompile Include="..\..\source\gui\detail\bedrock_windows.cpp">
|
||||||
<Filter>Source Files\nana\gui\detail</Filter>
|
<Filter>Source Files\nana\gui\detail</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\source\stdc++.cpp">
|
||||||
|
<Filter>Source Files\nana</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="..\..\source\gui\widgets\group.cpp">
|
<ClCompile Include="..\..\source\gui\widgets\group.cpp">
|
||||||
|
|||||||
@ -243,6 +243,7 @@
|
|||||||
<ClCompile Include="..\..\source\paint\image_process_selector.cpp" />
|
<ClCompile Include="..\..\source\paint\image_process_selector.cpp" />
|
||||||
<ClCompile Include="..\..\source\paint\pixel_buffer.cpp" />
|
<ClCompile Include="..\..\source\paint\pixel_buffer.cpp" />
|
||||||
<ClCompile Include="..\..\source\paint\text_renderer.cpp" />
|
<ClCompile Include="..\..\source\paint\text_renderer.cpp" />
|
||||||
|
<ClCompile Include="..\..\source\stdc++.cpp" />
|
||||||
<ClCompile Include="..\..\source\system\dataexch.cpp" />
|
<ClCompile Include="..\..\source\system\dataexch.cpp" />
|
||||||
<ClCompile Include="..\..\source\system\platform.cpp" />
|
<ClCompile Include="..\..\source\system\platform.cpp" />
|
||||||
<ClCompile Include="..\..\source\system\timepiece.cpp" />
|
<ClCompile Include="..\..\source\system\timepiece.cpp" />
|
||||||
|
|||||||
@ -282,5 +282,8 @@
|
|||||||
<ClCompile Include="..\..\source\gui\detail\bedrock_windows.cpp">
|
<ClCompile Include="..\..\source\gui\detail\bedrock_windows.cpp">
|
||||||
<Filter>Source Files\gui\detail</Filter>
|
<Filter>Source Files\gui\detail</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="..\..\source\stdc++.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* A Basic Window Widget Definition
|
* A Basic Window Widget Definition
|
||||||
* Nana C++ Library(http://www.nanapro.org)
|
* Nana C++ Library(http://www.nanapro.org)
|
||||||
* Copyright(C) 2003-2016 Jinhao(cnjinhao@hotmail.com)
|
* Copyright(C) 2003-2017 Jinhao(cnjinhao@hotmail.com)
|
||||||
*
|
*
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/*
|
/*
|
||||||
* Nana GUI Programming Interface Implementation
|
* Nana GUI Programming Interface Implementation
|
||||||
* Nana C++ Library(http://www.nanapro.org)
|
* Nana C++ Library(http://www.nanapro.org)
|
||||||
* Copyright(C) 2003-2016 Jinhao(cnjinhao@hotmail.com)
|
* Copyright(C) 2003-2017 Jinhao(cnjinhao@hotmail.com)
|
||||||
*
|
*
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* A Button Implementation
|
* A Button Implementation
|
||||||
* Nana C++ Library(http://www.nanapro.org)
|
* Nana C++ Library(http://www.nanapro.org)
|
||||||
* Copyright(C) 2003-2016 Jinhao(cnjinhao@hotmail.com)
|
* Copyright(C) 2003-2017 Jinhao(cnjinhao@hotmail.com)
|
||||||
*
|
*
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
/**
|
/**
|
||||||
* A Label Control Implementation
|
* A Label Control Implementation
|
||||||
* Nana C++ Library(http://www.nanapro.org)
|
* Nana C++ Library(http://www.nanapro.org)
|
||||||
* Copyright(C) 2003-2015 Jinhao(cnjinhao@hotmail.com)
|
* Copyright(C) 2003-2017 Jinhao(cnjinhao@hotmail.com)
|
||||||
*
|
*
|
||||||
* Distributed under the Boost Software License, Version 1.0.
|
* Distributed under the Boost Software License, Version 1.0.
|
||||||
* (See accompanying file LICENSE_1_0.txt or copy at
|
* (See accompanying file LICENSE_1_0.txt or copy at
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user