diff --git a/CMakeLists.txt b/CMakeLists.txt index 1eb9053e..ecfa0528 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -24,7 +24,7 @@ if(APPLE) endif() set(_3DSTOOL_MAJOR 1) set(_3DSTOOL_MINOR 0) -set(_3DSTOOL_PATCHLEVEL 19) +set(_3DSTOOL_PATCHLEVEL 20) if(NOT MSVC_IDE AND NOT XCODE_VERSION AND NOT CMAKE_BUILD_TYPE) set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Choose the type of build, options are: None(CMAKE_CXX_FLAGS or CMAKE_C_FLAGS used) Debug Release RelWithDebInfo MinSizeRel." FORCE) endif() diff --git a/README.md b/README.md index ef8768dc..796e36dd 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,7 @@ An all-in-one tool for extracting/creating 3ds roms. - v1.0.17 @ 2016.11.06 - Fix romfs hash bug - v1.0.18 @ 2016.12.04 - Compatible with yaz0 with alignment property - v1.0.19 @ 2017.01.11 - Fix romfs hash bug +- v1.0.20 @ 2017.03.24 - Refactoring ## Platforms diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index a56a8a30..88bd3c61 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -1,4 +1,3 @@ -AUTO_FILES(".." "src" "README\\.md") AUTO_FILES("." "src" "\\.(cpp|h)$") include_directories(${DEP_INCLUDE_DIR}) link_directories(${DEP_LIBRARY_DIR})