Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
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
10 changes: 4 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,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 @@ -187,12 +190,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