Skip to content

Commit

Permalink
[refactor] change install directory and version number
Browse files Browse the repository at this point in the history
Prepare for 0.2.0 release.
  • Loading branch information
whchung committed May 30, 2014
1 parent 123e905 commit f3369ca
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -161,17 +161,17 @@ add_custom_target(world
)

set(CPACK_SET_DESTDIR TRUE)
set(CPACK_INSTALL_PREFIX "/opt/mcw")
set(CPACK_INSTALL_PREFIX "/opt/clamp")
set(CPACK_PACKAGE_NAME "clamp")
set(CPACK_PACKAGE_VENDOR "MulticoreWare, Inc")
set(CPACK_PACKAGE_VERSION "0.1.1-${GIT_VERSION}")
set(CPACK_PACKAGE_VERSION "0.2.0-${GIT_VERSION}")
set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "1")
set(CPACK_PACKAGE_VERSION_PATCH "1")
set(CPACK_PACKAGE_VERSION_MINOR "2")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_PACKAGE_FILE_NAME ${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CMAKE_SYSTEM_NAME})
set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "clamp: a C++AMP to OpenCL compiler")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Ray I-Jui Sung <[email protected]>")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libcxxamp (>= 0.1.1)")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "libcxxamp (>= 0.2.0)")
if (CXXAMP_ENABLE_HSA_OKRA)
set(CPACK_DEBIAN_PACKAGE_DEPENDS
"${CPACK_DEBIAN_PACKAGE_DEPENDS}, okra-dev (>= 0.1.1)")
Expand Down
8 changes: 4 additions & 4 deletions libc++/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ INSTALL(FILES ${libcxxrt_files}
DESTINATION lib
)
set(CPACK_SET_DESTDIR TRUE)
set(CPACK_INSTALL_PREFIX "/opt/mcw")
set(CPACK_INSTALL_PREFIX "/opt/clamp")
set(CPACK_PACKAGE_NAME "libcxxamp")
set(CPACK_PACKAGE_VENDOR "MulticoreWare, Inc")
set(CPACK_PACKAGE_VERSION "0.1.1-${GIT_VERSION}")
set(CPACK_PACKAGE_VERSION "0.2.0-${GIT_VERSION}")
set(CPACK_PACKAGE_VERSION_MAJOR "0")
set(CPACK_PACKAGE_VERSION_MINOR "1")
set(CPACK_PACKAGE_VERSION_PATCH "1")
set(CPACK_PACKAGE_VERSION_MINOR "2")
set(CPACK_PACKAGE_VERSION_PATCH "0")
set(CPACK_PACKAGE_FILE_NAME ${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CMAKE_SYSTEM_NAME})
set(CPACK_DEBIAN_PACKAGE_DESCRIPTION "libcxxamp: libc++ for C++AMP to OpenCL compiler")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "Ray I-Jui Sung <[email protected]>")
Expand Down

0 comments on commit f3369ca

Please sign in to comment.