Skip to content

Commit

Permalink
Minor version updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ssldev committed Aug 20, 2018
1 parent fdb0810 commit 68507d6
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 13 deletions.
12 changes: 10 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
cmake_minimum_required(VERSION 2.8)
cmake_minimum_required(VERSION 3.1)

foreach(p
CMP0071 # 3.10: Let AUTOMOC and AUTOUIC process GENERATED files
)
if(POLICY ${p})
cmake_policy(SET ${p} NEW)
endif()
endforeach()

include(CryptoNoteWallet.cmake)
include(QREncode.cmake)
Expand Down Expand Up @@ -313,4 +321,4 @@ elseif (WIN32)
set(CPACK_GENERATOR ZIP)
endif (APPLE)

include(CPack)
include(CPack)
7 changes: 3 additions & 4 deletions CryptoNoteWallet.cmake
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@

set(CN_PROJECT_NAME "nutucoin")
set(CN_CURRENCY_DISPLAY_NAME "Nutucoin")
set(CN_PROJECT_NAME "Nutucoin-GUI")
set(CN_CURRENCY_DISPLAY_NAME "Nutucoin-GUI")
set(CN_CURRENCY_TICKER "NTU")
set(CN_VERSION 1.0.0)
set(CN_VERSION 1.0.1)
14 changes: 7 additions & 7 deletions src/cryptonotewallet.rc
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
IDI_ICON1 ICON "images\nutucoin.ico"
IDI_ICON1 ICON "images\\nutucoin.ico"

#include <windows.h>

#define VER_FILEVERSION 1,0,0,7
#define VER_FILEVERSION_STR "1.0.0.7\0"
#define VER_PRODUCTVERSION 1,2,3
#define VER_PRODUCTVERSION_STR "1.2.3\0"
#define VER_FILEDESCRIPTION_STR "Nutucoin"
#define VER_INTERNALNAME_STR "Nutucoin"
#define VER_PRODUCTVERSION 1,0,1
#define VER_PRODUCTVERSION_STR "1.0.1\0"
#define VER_FILEDESCRIPTION_STR "Nutucoin-GUI"
#define VER_INTERNALNAME_STR "Nutucoin-GUI"
#define VER_LEGALCOPYRIGHT_STR "Copyright (C) 2018, Nutucoin Developers"
#define VER_ORIGINALFILENAME_STR "Nutucoin.exe"
#define VER_PRODUCTNAME_STR "Nutucoin"
#define VER_ORIGINALFILENAME_STR "Nutucoin-GUI.exe"
#define VER_PRODUCTNAME_STR "Nutucoin-GUI"

VS_VERSION_INFO VERSIONINFO
FILEVERSION VER_FILEVERSION
Expand Down

0 comments on commit 68507d6

Please sign in to comment.