@@ -16,7 +16,7 @@ if(CCACHE_PROGRAM)
1616 set (CMAKE_C_COMPILER_LAUNCHER ${CCACHE_PROGRAM} CACHE FILEPATH "C compiler cache used" )
1717endif ()
1818
19- project (OpenStudioApplication VERSION 1.11 .0)
19+ project (OpenStudioApplication VERSION 1.12 .0)
2020
2121# Check system info globally so we can use it everywhere after: Has to be done before FindOpenStudioSDK.cmake
2222if (APPLE )
@@ -272,7 +272,7 @@ endif()
272272
273273# TODO: Modify the more specific variables as needed to indicate prerelease, etc
274274# Keep in beta in-between release cycles. Set to empty string (or comment out) for official)
275- set (PROJECT_VERSION_PRERELEASE "" )
275+ set (PROJECT_VERSION_PRERELEASE "beta " )
276276
277277# OpenStudio version: Only include Major.Minor.Patch, eg "3.0.0", even if you have a prerelease tag
278278set (OPENSTUDIOAPPLICATION_VERSION "${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} " )
@@ -544,7 +544,7 @@ message(STATUS "QT_INSTALL_DIR=${QT_INSTALL_DIR}")
544544
545545find_package (Qt6 ${QT_VERSION} COMPONENTS CoreTools GuiTools WidgetsTools QmlTools WebEngineCoreTools REQUIRED PATHS ${QT_INSTALL_DIR} NO_DEFAULT_PATH )
546546
547- find_package (Qt6 ${QT_VERSION} COMPONENTS Core Core5Compat Gui Widgets Sql Svg Network Xml Concurrent PrintSupport Quick QuickWidgets Qml WebChannel Positioning WebEngineCore WebEngineWidgets Charts REQUIRED PATHS ${QT_INSTALL_DIR} NO_DEFAULT_PATH )
547+ find_package (Qt6 ${QT_VERSION} COMPONENTS Core Gui Widgets Sql Svg Network Xml Concurrent PrintSupport Quick QuickWidgets Qml WebChannel Positioning WebEngineCore WebEngineWidgets Charts REQUIRED PATHS ${QT_INSTALL_DIR} NO_DEFAULT_PATH )
548548
549549find_package (Qt6LinguistTools ${QT_VERSION} REQUIRED PATHS ${QT_INSTALL_DIR} NO_DEFAULT_PATH )
550550
@@ -612,7 +612,6 @@ endif()
612612
613613# QT_LIBS are linked by OS App and by openstudio_modeleditor.so
614614list (APPEND QT_LIBS Qt6::Core)
615- list (APPEND QT_LIBS Qt6::Core5Compat)
616615list (APPEND QT_LIBS Qt6::Widgets)
617616list (APPEND QT_LIBS Qt6::Network)
618617list (APPEND QT_LIBS Qt6::Xml)
@@ -643,7 +642,6 @@ list(APPEND QT_INCLUDES ${Qt6Widgets_INCLUDE_DIRS})
643642list (APPEND QT_INCLUDES ${Qt6Xml_INCLUDE_DIRS} )
644643list (APPEND QT_INCLUDES ${Qt6Network_INCLUDE_DIRS} )
645644list (APPEND QT_INCLUDES ${Qt6Gui_INCLUDE_DIRS} )
646- list (APPEND QT_INCLUDES "${QT_INSTALL_DIR} /include/QtGui/${QT_VERSION} /QtGui" ) # needed by qtwinmigrate
647645list (APPEND QT_INCLUDES ${Qt6PrintSupport_INCLUDE_DIRS} )
648646
649647# DLM: added this, but seems to conflict with idea of a separate set of Qt Web dependencies?
@@ -708,10 +706,6 @@ get_target_property(OS_CLI_IMPORTED_PATH openstudio::openstudio LOCATION)
708706# set(OS_CLI_IMPORTED_NAME "openstudio${CMAKE_EXECUTABLE_SUFFIX}")
709707get_filename_component (OS_CLI_IMPORTED_NAME ${OS_CLI_IMPORTED_PATH} NAME )
710708
711- if (WIN32 )
712- include_directories ("${PROJECT_SOURCE_DIR} /src/qtwinmigrate" )
713- list (APPEND project_directories "qtwinmigrate" )
714- endif ()
715709list (APPEND project_directories "utilities" )
716710list (APPEND project_directories "model_editor" )
717711list (APPEND project_directories "bimserver" )
@@ -730,9 +724,6 @@ add_subdirectory("translations")
730724# E X P O R T T A R G E T S #
731725###############################################################################
732726
733- if (WIN32 )
734- list (APPEND all_lib_targets "qtwinmigrate" )
735- endif ()
736727list (APPEND all_lib_targets "openstudio_modeleditor" )
737728list (APPEND all_lib_targets "openstudio_bimserver" )
738729list (APPEND all_lib_targets "openstudio_lib" )
0 commit comments