From c11b0ac53846798bca8f60132ebf8df935e1a802 Mon Sep 17 00:00:00 2001 From: Bertrand Coconnier Date: Sat, 24 Oct 2020 19:31:47 +0200 Subject: [PATCH] Generate the Inno Setup file ...and bump the version back to 1.1.1 (Oops !) --- CMakeLists.txt | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f4efa5c9ed..5ecbb5d694 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -7,7 +7,7 @@ project(JSBSim) set(PROJECT_VERSION_MAJOR "1") set(PROJECT_VERSION_MINOR "1") -set(PROJECT_VERSION_PATCH "2") +set(PROJECT_VERSION_PATCH "1") set(PROJECT_CONTACT_EMAIL "jsbsim-devel@lists.sourceforge.net") set(PROJECT_CONTACT_VENDOR "The JSBSim team") @@ -206,6 +206,14 @@ if(BUILD_SHARED_LIBS) set(CPACK_RPM_PYMODULES_PACKAGE_REQUIRES "${CPACK_RPM_RUNTIME_PACKAGE_NAME} >= ${CPACK_PACKAGE_VERSION}") endif() +################################################################################ +# Windows installer # +################################################################################ + +if(WIN32) + configure_file(${CMAKE_SOURCE_DIR}/JSBSim.iss.in JSBSim.iss) +endif() + ################################################################################ # Source packaging # ################################################################################