Browse Source

Making ready for vertion 0.7.2

Jakob Truelsen 16 years ago
parent
commit
6aa9e504d2
2 changed files with 4 additions and 4 deletions
  1. 3 3
      CMakeLists.txt
  2. 1 1
      wkhtmltopdf.pro

+ 3 - 3
CMakeLists.txt

@@ -16,7 +16,7 @@ CMAKE_MINIMUM_REQUIRED(VERSION 2.6)
 PROJECT(wkhtmltopdf)
 SET(CPACK_PACKAGE_VERSION_MAJOR "0")
 SET(CPACK_PACKAGE_VERSION_MINOR "7")
-SET(CPACK_PACKAGE_VERSION_PATCH "1")
+SET(CPACK_PACKAGE_VERSION_PATCH "2")
 
 SET( CMAKE_COLOR_MAKEFILE ON )
 SET( CMAKE_VERBOSE_MAKEFILE ON )
@@ -27,8 +27,8 @@ SET( QT_USE_QTNETWORK TRUE )
 FIND_PACKAGE( Qt4 REQUIRED )
 INCLUDE( ${QT_USE_FILE} )
 INCLUDE_DIRECTORIES(${CMAKE_BINARY_DIR} )
-QT4_WRAP_CPP(HAT wkhtmltopdf.hh)
-ADD_EXECUTABLE(wkhtmltopdf wkhtmltopdf.cc ${HAT})
+QT4_WRAP_CPP(HAT wkhtmltopdf.hh toc.hh)
+ADD_EXECUTABLE(wkhtmltopdf wkhtmltopdf.cc toc.cc arguments.cc ${HAT})
 TARGET_LINK_LIBRARIES( wkhtmltopdf ${QT_LIBRARIES} )
 INSTALL(TARGETS wkhtmltopdf DESTINATION bin)
 

+ 1 - 1
wkhtmltopdf.pro

@@ -13,7 +13,7 @@
 # You should have received a copy of the GNU General Public License
 # along with wkhtmltopdf.  If not, see <http:#www.gnu.org/licenses/>.
 
-DEFINES += MAJOR_VERSION=0 MINOR_VERSION=7 PATCH_VERSION=1
+DEFINES += MAJOR_VERSION=0 MINOR_VERSION=7 PATCH_VERSION=2
 
 TEMP = $$[QT_INSTALL_LIBS] libQtGui.prl
 include($$join(TEMP, "/"))