Skip to content

Commit

Permalink
Stub for 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
lcferrum committed Sep 7, 2017
1 parent b75978d commit e63d2ec
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions SuiteVersion.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@

#define SNK_HS_TITLE L"HotkeySuite"

#define _HS_DEV_BUILD 0 //SET TO 0 ON RELEASE COMMIT
#define _HS_DEV_BUILD 1 //SET TO 0 ON RELEASE COMMIT

#define _HS_MAJ_VERSION 1 //UPDATE THIS DEFINE ON VERSION CHANGE
#define _HS_MIN_VERSION 1 //UPDATE THIS DEFINE ON VERSION CHANGE
#define _HS_MIN_VERSION 2 //UPDATE THIS DEFINE ON VERSION CHANGE

#define __STRINGIFY(x) #x
#define _STRINGIFY(x) __STRINGIFY(x)
Expand Down
5 changes: 4 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@
# Cleans directory of executables
# make upx
# Pack executables with upx
# make install
# Makes installer, requires compiled SnK binary residing in adjacent directory (../snk)
# Under MSYS 1.0 fails because of posix path conversion - use mingw32-make for this target
# make UPSTREAM_INC=PATH
# Change include path for clang++ 3.6.2 and g++ 4.7.2 (default is /c/cygwin/usr/i686-w64-mingw32/sys-root/mingw/include/)
# make DEBUG=LEVEL
# Makes debug build
# Makes debug build (currently only level 1 supported)

# Conditionals
ifeq (,$(if $(filter-out upx install clean,$(MAKECMDGOALS)),,$(MAKECMDGOALS)))
Expand Down

0 comments on commit e63d2ec

Please sign in to comment.