Compare commits

..

No commits in common. "626522e074fb9d96fb91f8575c0813efe82354a4" and "0e0ffb1d8c66c8e3ac4bef709de4996e7afc6808" have entirely different histories.

3 changed files with 4 additions and 7 deletions

View File

@ -20,15 +20,15 @@ add_library(libblisp_static STATIC $<TARGET_OBJECTS:libblisp_obj>)
set_target_properties(libblisp PROPERTIES
PUBLIC_HEADER "include/blisp.h"
VERSION 0.0.2
VERSION 0.0.1
SOVERSION 1
LIBRARY_OUTPUT_DIRECTORY "shared"
OUTPUT_NAME "blisp")
set_target_properties(libblisp_static PROPERTIES
PUBLIC_HEADER "include/blisp.h"
VERSION 0.0.2
SOVERSION 1
VERSION 0.0.1
SOVERSION 2
ARCHIVE_OUTPUT_DIRECTORY "static"
OUTPUT_NAME "blisp")

View File

@ -1,6 +1,3 @@
set(ARGTABLE3_ENABLE_TESTS OFF CACHE BOOL "Enable unit tests")
set(ARGTABLE3_ENABLE_EXAMPLES OFF CACHE BOOL "Enable examples")
#set(ARGTABLE3_REPLACE_GETOPT OFF CACHE BOOL "Replace getopt in the system C library")
add_subdirectory(${CMAKE_SOURCE_DIR}/vendor/argtable3 ${CMAKE_CURRENT_BINARY_DIR}/argtable3)
add_executable(blisp src/main.c src/cmd/write.c src/util.c src/common.c src/cmd/iot.c)

View File

@ -45,7 +45,7 @@ int8_t args_parse_exec(int argc, char** argv) {
print_help();
return 1;
} else if (version->count) {
printf("blisp v0.0.2\n");
printf("blisp 0.0.1\n");
printf("Copyright (C) 2023 Marek Kraus and PINE64 Community\n");
return 1;
}