Version 1.2.0
This commit is contained in:
parent
fb435842b2
commit
44d120d7a8
@ -34,7 +34,7 @@ typedef struct json_value_t JSON_Value;
|
||||
#define OVNI_STREAM_EXT ".obs"
|
||||
|
||||
/* Follow https://semver.org rules for versioning */
|
||||
#define OVNI_LIB_VERSION "1.1.0"
|
||||
#define OVNI_LIB_VERSION "1.2.0"
|
||||
|
||||
/* ----------------------- common ------------------------ */
|
||||
|
||||
|
@ -4,13 +4,14 @@
|
||||
#include "emu_args.h"
|
||||
|
||||
#include "common.h"
|
||||
#include "ovni.h"
|
||||
#include "path.h"
|
||||
#include <unistd.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
static char progname[] = "ovniemu";
|
||||
static char version[] = "1.0.0";
|
||||
static char version[] = OVNI_LIB_VERSION;
|
||||
|
||||
static void
|
||||
usage(void)
|
||||
|
@ -7,7 +7,7 @@ add_library(ovni SHARED ovni.c)
|
||||
target_link_libraries(ovni parson common)
|
||||
target_include_directories(ovni PUBLIC "${CMAKE_SOURCE_DIR}/include")
|
||||
set_target_properties(ovni PROPERTIES
|
||||
VERSION 1.1.0
|
||||
VERSION 1.2.0
|
||||
SOVERSION 1)
|
||||
|
||||
add_library(ovni-static STATIC ovni.c)
|
||||
|
Loading…
Reference in New Issue
Block a user