]> Creatis software - clitk.git/commitdiff
Added compilation date to track whether this is a released binary or a
authorSimon Rit <simon.rit@creatis.insa-lyon.fr>
Thu, 19 May 2011 14:43:06 +0000 (16:43 +0200)
committerSimon Rit <simon.rit@creatis.insa-lyon.fr>
Thu, 19 May 2011 14:45:31 +0000 (16:45 +0200)
manually compiled version

vv/vvConfiguration.h.in
vv/vvRegisterForm.cxx

index 65ada5fb4fe7998355e6079fde367769f898f7af..36d3258b73fb9ee25de7edfd3f94f6a77a2bcdf3 100644 (file)
@@ -20,6 +20,5 @@
 #define vv_configuration_h
 
 #define VV_VERSION "v@CPACK_PACKAGE_VERSION_MAJOR@.@CPACK_PACKAGE_VERSION_MINOR@.@CPACK_PACKAGE_VERSION_PATCH@"
-#cmakedefine01 VV_RELEASED_BINARY
 
 #endif
index c2bda0e1c581c69b0554ca35c74034b297faf4e9..e39ffddadd9faf50f80befbab7f6b679927107d6 100644 (file)
@@ -40,6 +40,8 @@ void vvRegisterForm::sendData(){
   url2.addQueryItem("os", osName->text().toUtf8());
   url2.addQueryItem("vvVersion", VV_VERSION);
   url2.addQueryItem("architecture", ARCHITECTURE);
+  url2.addQueryItem("compilationDate", QString(__DATE__) + ", " + QString(__TIME__) );
+
   manager->get(QNetworkRequest(url2));
 }
 void vvRegisterForm::accept(){