Skip to content

Commit

Permalink
separate code and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
zvezdochiot committed Dec 20, 2021
1 parent ac1d4ea commit 0a2beb4
Show file tree
Hide file tree
Showing 14 changed files with 27 additions and 27 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ if (NOT MSVC)
set(CMAKE_C_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE}")

set(CMAKE_CXX_FLAGS -std=c++11)
set(GCC_COMPILE_FLAGS "-fvisibility=hidden -fPIC -fno-strict-aliasing -D_LARGEFILE64_SOURCE=1 -D_FILE_OFFSET_BITS=64 -Wall -Wextra")
set(GCC_COMPILE_FLAGS "-fvisibility=hidden -fPIC -fno-strict-aliasing -D_LARGEFILE64_SOURCE=1 -D_FILE_OFFSET_BITS=64 -Wall -Wextra -Isrc")

if (NOT BUILD_X64)
set(GCC_COMPILE_FLAGS "${GCC_COMPILE_FLAGS} -m32")
Expand All @@ -49,10 +49,10 @@ else()
endif()

set(FPNG_SRC_LIST ${COMMON_SRC_LIST}
fpng.cpp
Crc32.cpp
fpng_test.cpp
lodepng.cpp
src/fpng.cpp
src/Crc32.cpp
src/fpng_test.cpp
src/lodepng.cpp
)

if (APPLE)
Expand Down
22 changes: 11 additions & 11 deletions fpng.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -143,20 +143,20 @@
</Link>
</ItemDefinitionGroup>
<ItemGroup>
<ClCompile Include="Crc32.cpp" />
<ClCompile Include="fpng.cpp" />
<ClCompile Include="fpng_test.cpp" />
<ClCompile Include="lodepng.cpp" />
<ClCompile Include="src/Crc32.cpp" />
<ClCompile Include="src/fpng.cpp" />
<ClCompile Include="src/fpng_test.cpp" />
<ClCompile Include="src/lodepng.cpp" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="Crc32.h" />
<ClInclude Include="fpng.h" />
<ClInclude Include="lodepng.h" />
<ClInclude Include="qoi.h" />
<ClInclude Include="stb_image.h" />
<ClInclude Include="stb_image_write.h" />
<ClInclude Include="src/Crc32.h" />
<ClInclude Include="src/fpng.h" />
<ClInclude Include="src/lodepng.h" />
<ClInclude Include="src/qoi.h" />
<ClInclude Include="src/stb_image.h" />
<ClInclude Include="src/stb_image_write.h" />
</ItemGroup>
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
<ImportGroup Label="ExtensionTargets">
</ImportGroup>
</Project>
</Project>
22 changes: 11 additions & 11 deletions fpng.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -15,37 +15,37 @@
</Filter>
</ItemGroup>
<ItemGroup>
<ClCompile Include="fpng.cpp">
<ClCompile Include="src/fpng.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="Crc32.cpp">
<ClCompile Include="src/Crc32.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="fpng_test.cpp">
<ClCompile Include="src/fpng_test.cpp">
<Filter>Source Files</Filter>
</ClCompile>
<ClCompile Include="lodepng.cpp">
<ClCompile Include="src/lodepng.cpp">
<Filter>Source Files</Filter>
</ClCompile>
</ItemGroup>
<ItemGroup>
<ClInclude Include="Crc32.h">
<ClInclude Include="src/Crc32.h">
<Filter>Source Files</Filter>
</ClInclude>
<ClInclude Include="fpng.h">
<ClInclude Include="src/fpng.h">
<Filter>Source Files</Filter>
</ClInclude>
<ClInclude Include="qoi.h">
<ClInclude Include="src/qoi.h">
<Filter>Source Files</Filter>
</ClInclude>
<ClInclude Include="stb_image.h">
<ClInclude Include="src/stb_image.h">
<Filter>Source Files</Filter>
</ClInclude>
<ClInclude Include="stb_image_write.h">
<ClInclude Include="src/stb_image_write.h">
<Filter>Source Files</Filter>
</ClInclude>
<ClInclude Include="lodepng.h">
<ClInclude Include="src/lodepng.h">
<Filter>Source Files</Filter>
</ClInclude>
</ItemGroup>
</Project>
</Project>
Binary file removed qoi.qoi
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 0a2beb4

Please sign in to comment.