idf_exe: bump version to 1.0.1

This commit is contained in:
Ivan Grokhotkov 2019-07-09 14:10:05 +02:00
parent 76dc87e9ad
commit 15bcb79712
2 changed files with 2 additions and 2 deletions

View file

@ -1,10 +1,11 @@
cmake_minimum_required(VERSION 3.5)
project(idfexe)
set(VERSION 1.0)
set(VERSION 1.0.1)
set(ARCHIVE_NAME idf-exe-v${VERSION}.zip)
add_executable(idf idf_main.c)
target_compile_definitions(idf PRIVATE -DVERSION=\"${VERSION}\")
set_target_properties(idf PROPERTIES C_STANDARD 99)
target_link_libraries(idf "-lshlwapi")

View file

@ -18,7 +18,6 @@
#include <stdarg.h>
#define LINESIZE 1024
#define VERSION "1.0"
static void fail(LPCSTR message, ...) __attribute__((noreturn));