Skip to content

Commit

Permalink
Zip the package on windows instead of using tar.gz
Browse files Browse the repository at this point in the history
git-svn-id: svn://svn.pgadmin.org/trunk@7523 a7884b65-44f6-0310-8a51-81a127f17b15
  • Loading branch information
dpage committed Dec 19, 2008
1 parent 3986bbc commit 88a6a6a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion CMakeLists.txt
Expand Up @@ -61,7 +61,11 @@ SET(CPACK_PACKAGE_VERSION_PATCH 1)
SET(CPACK_PACKAGE_NAME "pgAgent")
SET(CPACK_PACKAGE_DESCRIPTION_SUMMARY "pgAgent is a job scheduling engine for PostgreSQL")
SET(CPACK_PACKAGE_VENDOR "the pgAdmin Development Team")
SET(CPACK_GENERATOR TGZ)
IF(WIN32)
SET(CPACK_GENERATOR ZIP)
ELSE(WIN32)
SET(CPACK_GENERATOR TGZ)
ENDIF(WIN32)
SET(CPACK_SOURCE_GENERATOR TGZ)
SET(CPACK_SOURCE_IGNORE_FILES "\\\\.DS_Store;/CVS/;/\\\\.svn/;\\\\.swp$;\\\\.#;/#;.*~;cscope.*")

Expand Down

0 comments on commit 88a6a6a

Please sign in to comment.