Some cmake cleanup.

This commit is contained in:
Jim Evins
2017-02-26 16:26:40 -05:00
parent 95467b6ed2
commit c363c340ce
6 changed files with 34 additions and 31 deletions
-8
View File
@@ -1,11 +1,3 @@
cmake_minimum_required (VERSION 2.8.12)
###############################################################################
# gLabels application subproject
###############################################################################
project (app CXX)
#=======================================
# Compilation
#=======================================
+1 -1
View File
@@ -27,7 +27,7 @@ namespace glabels
namespace Config
{
const QString PROJECT_SOURCE_DIR = "@glabels_qt_SOURCE_DIR@";
const QString PROJECT_SOURCE_DIR = "@glabels_SOURCE_DIR@";
}
}
+9 -6
View File
@@ -22,15 +22,18 @@
#define glabels_Version_h
namespace Version
namespace glabels
{
const QString WEBSITE = "@Website@";
namespace Version
{
const QString WEBSITE = "@Website@";
const int MAJOR = @Major_Version@;
const int MINOR = @Minor_Version@;
const int MICRO = @Micro_Version@;
const int MAJOR = @Major_Version@;
const int MINOR = @Minor_Version@;
const int MICRO = @Micro_Version@;
const QString STRING = "@Full_Version@";
const QString STRING = "@Full_Version@";
}
}