From de8491f34568cf576bd251b95189676b81ca6277 Mon Sep 17 00:00:00 2001 From: David Borland Date: Tue, 23 Jun 2020 13:46:03 -0400 Subject: [PATCH] Bump version --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 321c7ae..d22998c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,7 +4,7 @@ if(POLICY CMP0020) cmake_policy(SET CMP0020 NEW) endif() -project(Segmentor VERSION 0.2.5) +project(Segmentor VERSION 0.2.6) set(CMAKE_INSTALL_PREFIX ${CMAKE_BINARY_DIR}/Install) @@ -63,8 +63,8 @@ set(UI_RESOURCES # Create executable qt5_wrap_ui(UISrcs ${UI_FILES} ) # CMAKE_AUTOMOC in ON so the MOC headers will be automatically wrapped. -#add_executable(Segmentor MACOSX_BUNDLE WIN32 ${CXX_FILES} ${UISrcs} ${QT_WRAP} ${UI_RESOURCES}) -add_executable(Segmentor MACOSX_BUNDLE ${CXX_FILES} ${UISrcs} ${QT_WRAP} ${UI_RESOURCES}) +add_executable(Segmentor MACOSX_BUNDLE WIN32 ${CXX_FILES} ${UISrcs} ${QT_WRAP} ${UI_RESOURCES}) +#add_executable(Segmentor MACOSX_BUNDLE ${CXX_FILES} ${UISrcs} ${QT_WRAP} ${UI_RESOURCES}) qt5_use_modules(Segmentor Core Gui) target_link_libraries(Segmentor ${VTK_LIBRARIES}) install(TARGETS Segmentor