diff --git a/CHANGES b/CHANGES index 6e480de..3383d2d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,8 @@ +Changes for 3.1.0: + +* Fixed issue #64: Remove build artifacts of samples from installation packages. + + Changes for 3.0.1: * Fixed issue #68: Update to RapidAssist version 0.11.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index 74ca0c4..2a2d3fa 100755 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -97,8 +97,8 @@ endif() # Product version according to Semantic Versioning v2.0.0 https://semver.org/ SET(BIN2CPP_VERSION_MAJOR 3) -SET(BIN2CPP_VERSION_MINOR 0) -SET(BIN2CPP_VERSION_PATCH 1) +SET(BIN2CPP_VERSION_MINOR 1) +SET(BIN2CPP_VERSION_PATCH 0) set(BIN2CPP_VERSION ${BIN2CPP_VERSION_MAJOR}.${BIN2CPP_VERSION_MINOR}.${BIN2CPP_VERSION_PATCH}) FILE(WRITE ${CMAKE_BINARY_DIR}/version "${BIN2CPP_VERSION}") @@ -228,7 +228,10 @@ endif() # On Windows, installs to "C:\Program Files (x86)\${PROJECT_NAME}" or to "C:\Program Files\${PROJECT_NAME}" for 64 bit binaries install(DIRECTORY ${CMAKE_SOURCE_DIR}/licenses DESTINATION ${BIN2CPP_INSTALL_ROOT_DIR}) -install(DIRECTORY ${CMAKE_SOURCE_DIR}/samples DESTINATION ${BIN2CPP_INSTALL_ROOT_DIR}) +install(DIRECTORY ${CMAKE_SOURCE_DIR}/samples DESTINATION ${BIN2CPP_INSTALL_ROOT_DIR} + PATTERN "outdir" EXCLUDE + PATTERN "outdir/*" EXCLUDE +) install(FILES ${CMAKE_SOURCE_DIR}/README.md ${CMAKE_SOURCE_DIR}/CONTRIBUTING.md