Skip to content

Commit 2c84e62

Browse files
committed
v2.2.2
1 parent e475b30 commit 2c84e62

File tree

2 files changed

+2
-11
lines changed

2 files changed

+2
-11
lines changed

CMakeLists.txt

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
cmake_minimum_required(VERSION 3.0.0)
2-
project(base16384 VERSION 2.2.0)
3-
SET(CMAKE_BUILD_TYPE "Release")
2+
project(base16384 VERSION 2.2.2)
43

54
add_executable(base16384_b base16384.c)
65

@@ -18,14 +17,6 @@ ELSE()
1817
add_library(base16384_s STATIC file.c base1432.c)
1918
ENDIF()
2019

21-
if (MSVC)
22-
# do nothing
23-
else()
24-
# add hardening
25-
target_compile_options(base16384 PUBLIC -Wl,-z,now -Wdate-time)
26-
add_definitions(-D_FORTIFY_SOURCE=2)
27-
endif()
28-
2920
set_target_properties(base16384_b PROPERTIES OUTPUT_NAME base16384)
3021
set_target_properties(base16384_s PROPERTIES OUTPUT_NAME base16384)
3122
set_target_properties(base16384 PROPERTIES VERSION ${CMAKE_PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR})

base16384.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ unsigned long get_start_ms() {
3939
#endif
4040

4141
static void print_usage() {
42-
puts("Copyright (c) 2022 Fumiama Minamoto.\nBase16384 2.2.0 (Oct 16th 2022). Usage:");
42+
puts("Copyright (c) 2022 Fumiama Minamoto.\nBase16384 2.2.2 (Dec 14th 2022). Usage:");
4343
puts("base16384 [-edt] [inputfile] [outputfile]");
4444
puts(" -e\t\tencode");
4545
puts(" -d\t\tdecode");

0 commit comments

Comments
 (0)