Skip to content

Commit

Permalink
Typo in CMake Debug part
Browse files Browse the repository at this point in the history
  • Loading branch information
r-bernhard committed Feb 23, 2024
1 parent e550df9 commit 1766c4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _build/_cmake_qt4/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,9 @@ if (CMAKE_BUILD_TYPE STREQUAL "Release")
add_custom_target(setup
COMMAND call "../win/_build_doc.cmd" ${BASE_DIR}
COMMAND cmd /c "%INNO_DIR%/iscc.exe" /Q /O${BASE_DIR}/_build/bin ${BASE_DIR}/setup/setup.iss
)

target_link_libraries(Ipponboard Qt4::QtCore Qt4::QtGui Qt4::QtXmlPatterns)
)
else()
#if (CMAKE_COMPILER_IS_GNUCC AND CMAKE_CXX_COMPILER_VERSION VERSION_LESS 11.1.0)
# message(FATAL_ERROR "Require at least gcc-11.1.0, because c++-17 is needed")
Expand Down Expand Up @@ -148,12 +148,12 @@ if (CMAKE_BUILD_TYPE STREQUAL "Debug")
#endif()

add_executable(Ipponboard_Debug ${SOURCES} ${BASE_DIR}/base/Ipponboard.rc)
set_target_properties(Ipponboard_Debug PROPERTIES
set_target_properties(Ipponboard_Debug PROPERTIES
RUNTIME_OUTPUT_DIRECTORY "${BASE_DIR}/_build/bin/Debug"
OUTPUT_NAME Ipponboard
)

target_link_libraries(Ipponboard Qt4::QtCore Qt4::QtGui Qt4::QtXmlPatterns X11 Xrandr)
target_link_libraries(Ipponboard_Debug Qt4::QtCore Qt4::QtGui Qt4::QtXmlPatterns X11 Xrandr)
endif()
endif()

Expand Down

0 comments on commit 1766c4a

Please sign in to comment.