star-mesh

Define and load a binary data format for meshes
git clone git://git.meso-star.fr/star-mesh.git
Log | Files | Refs | README | LICENSE

commit f73ca819abaf9bf46952eabdb3d41a6e93331658
parent 18800cc956556b2b1ac60a9d0ec75b33cc6054a9
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Sat, 15 Apr 2023 16:40:54 +0200

Update version number from 0.0 to 0.1

Diffstat:
Mcmake/CMakeLists.txt | 2+-
Mconfig.mk | 5++++-
2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -36,7 +36,7 @@ include_directories(${RSys_INCLUDE_DIR}) # Configure and define targets ################################################################################ set(VERSION_MAJOR 0) -set(VERSION_MINOR 0) +set(VERSION_MINOR 1) set(VERSION_PATCH 0) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) diff --git a/config.mk b/config.mk @@ -1,4 +1,4 @@ -VERSION = 0.0.0 # Library version +VERSION = 0.1.0 # Library version PREFIX = /usr/local PKG_CONFIG = pkg-config @@ -30,5 +30,8 @@ WFLAGS =\ CFLAGS = -O3 -std=c89 -pedantic -fPIC -fvisibility=hidden -fstrict-aliasing\ -Wl,--no-undefined $(WFLAGS) $(CPPFLAGS) # Compiler options +#CFLAGS = -g -std=c89 -pedantic -fPIC -fvisibility=hidden -fstrict-aliasing\ + -Wl,--no-undefined $(WFLAGS) $(CPPFLAGS) # Compiler options + LDFLAGS = -shared # Linker options