Added some gif to README and fixed bad version number

This commit is contained in:
JackCarterSmith 2020-09-09 03:12:46 +02:00
parent 1b111664b0
commit 854dba8a26
No known key found for this signature in database
GPG Key ID: B05F75E5934B1D7F
2 changed files with 6 additions and 2 deletions

View File

@ -9,7 +9,7 @@ cmake_policy(VERSION 3.1)
# define project
project(rse-texture VERSION 1.0.1 DESCRIPTION "RogueSquadron Extractor - Texture" LANGUAGES C)
set(CMAKE_BUILD_TYPE Release)
set(RSE_TEX_NAME RSE_Texture-${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR})
set(RSE_TEX_NAME RSE_Texture-${PROJECT_VERSION})
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/src/config.h.in ${CMAKE_CURRENT_SOURCE_DIR}/src/config.h @ONLY)
include(CheckIncludeFile)

View File

@ -26,6 +26,8 @@ This module can do:
Some textures samples can be found here (https://bit.ly/2DGjtng). A futur main program can extract all HMT files directly from DAT file.
<img src="https://repo.jcsmith.fr/pictures/rse-texture.gif" width="620" height="400" />
### Options
- -h Print this message
@ -52,4 +54,6 @@ make
make install
```
On Windows system, you will probably need to specify the dependency flags for CMake.
On Windows system, you will probably need to specify the dependency flags for CMake. Ex:
`cmake.exe -D"ZLIB_INCLUDE_DIR=zlib/1.2.11/include" -D"ZLIB_LIBRARY=zlib/1.2.11/libzlib.dll.a" -D"PNG_PNG_INCLUDE_DIR=libpng/1.6.37/include" -D"PNG_LIBRARY=libpng/1.6.37/libpng.dll.a" . -G "MinGW Makefiles"`