Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 5 additions & 7 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ else()
include(cmake/CPM.cmake)
include(cmake/icons-breeze.cmake)

CPMAddPackage("gh:diegoiast/qmdilib#7756133c93f092ade2cef88c438d84a93051f6a0")
CPMAddPackage("gh:diegoiast/qmdilib#64f369009cff1d3761161d04442a86c0c74c1c58")
CPMAddPackage("gh:diegoiast/qutepart-cpp#2eea3e989a8f22be542002bc58f46c587eb9a412")
CPMAddPackage("gh:diegoiast/command-palette-widget#69eb447b61c9d042394a1404c71a0d0b54ac28c0")
CPMAddPackage("gh:diegoiast/KodoTerm#9d016815076a451ad639fa021d46602585e91247")
Expand Down Expand Up @@ -172,6 +172,9 @@ set(codepointer_sources
src/plugins/git/GitCommit.ui
src/plugins/git/GitPlugin.cpp
src/plugins/git/GitPlugin.hpp
src/plugins/git/CommitForm.cpp
src/plugins/git/CommitForm.hpp
src/plugins/git/CommitForm.ui
src/plugins/Terminal/TerminalPlugin.cpp
src/plugins/Terminal/TerminalPlugin.hpp
src/AnsiToHTML.cpp
Expand All @@ -185,12 +188,7 @@ file(COPY "${CMAKE_SOURCE_DIR}/${ICON_NAME}.ico" DESTINATION "${CMAKE_BINARY_DIR

configure_file(codepointer.qrc.in ${CMAKE_BINARY_DIR}/codepointer.qrc)
configure_file(codepointer.desktop.in ${CMAKE_BINARY_DIR}/${CODEPOINTER_APP_NAME}.desktop)

if (WIN32)
add_executable(codepointer WIN32 ${codepointer_sources} codepointer.rc)
else()
add_executable(codepointer ${codepointer_sources})
endif()
add_executable(codepointer WIN32 ${codepointer_sources} codepointer.rc)

if (!MINGW)
set_property(TARGET codepointerPROPERTY INTERPROCEDURAL_OPTIMIZATION TRUE)
Expand Down
2 changes: 1 addition & 1 deletion build-appimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ APP_VERSION="0.1.1"
QT_VERSION="6.10.1"

NAME="${APP_NAME}-v${APP_VERSION}${NAME_SUFFIX}-x86_64"
QTDIR="${HOME}/qt/${QT_VERSION}/gcc_64"
QTDIR="/usr/lib/qt6"
export matrix_config_build_dir=ubuntu-gcc
export PATH=$QTDIR/bin:$PATH
export LD_LIBRARY_PATH=$QTDIR/lib:$LD_LIBRARY_PATH
Expand Down
Loading