aboutsummaryrefslogtreecommitdiffstats
path: root/src/activitypub
Commit message (Expand)AuthorAge
* Make quick_read_setting() a templated methodConfuSomu2023-08-16
* Implement localtime/UTC time display settingConfuSomu2023-08-16
* Move APAttachmentFields to fields.hConfuSomu2023-07-18
* Implement Question object type supportConfuSomu2023-07-18
* Implement a small library of ActivityPub objectsConfuSomu2023-07-05
'n58' href='#n58'>58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
cmake_minimum_required(VERSION 3.5)

project(ActorViewer VERSION 0.1 LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON) # For Kate's LSP

find_package(QT NAMES Qt5 REQUIRED COMPONENTS Widgets Concurrent)
find_package(Qt${QT_VERSION_MAJOR} REQUIRED COMPONENTS Widgets Concurrent)

find_package(mastodonpp REQUIRED)

# add_subdirectory will happen later…
set(PROJECT_SOURCES
        src/main.cpp
        src/mainwindow.cpp
        src/mainwindow.h
        src/mainwindow.ui
        src/finddialog.cpp
        src/finddialog.h
        src/finddialog.ui
        src/settingsdialog.cpp
        src/settingsdialog.h
        src/settingsdialog.ui
        src/settings_interface.cpp
        src/settings_interface.h
        src/widgets/status_info.cpp
        src/widgets/status_info.h
        src/widgets/status_info.ui
        src/archive/base_archive.cpp
        src/archive/base_archive.h
        src/archive/mastodon.cpp
        src/archive/mastodon.h
        src/types.h
        src/list_item.cpp
        src/list_item.h
        src/command_line.cpp
        src/command_line.h
        src/net/instance.cpp
        src/net/instance.h
        src/net/mastodon_instance.cpp
        src/net/mastodon_instance.h
        src/activitypub/fields.h
        src/activitypub/apactivity.h
        src/activitypub/apactor.h
        src/activitypub/apattachment.h
        src/activitypub/apbase.h
        src/activitypub/apobject.h
        src/activitypub/appost.h
        src/activitypub/apreblog.h
        src/activitypub/apquestion.h
        src/activitypub/apactivity.cpp
        src/activitypub/apactor.cpp
        src/activitypub/apattachment.cpp
        src/activitypub/apbase.cpp
        src/activitypub/apobject.cpp
        src/activitypub/appost.cpp
        src/activitypub/apreblog.cpp
        src/activitypub/apquestion.cpp
)

if(${QT_VERSION_MAJOR} GREATER_EQUAL 6)
    qt_add_executable(ActorViewer
        MANUAL_FINALIZATION
        ${PROJECT_SOURCES}
    )
# Define target properties for Android with Qt 6 as:
#    set_property(TARGET ActorViewer APPEND PROPERTY QT_ANDROID_PACKAGE_SOURCE_DIR
#                 ${CMAKE_CURRENT_SOURCE_DIR}/android)
# For more information, see https://doc.qt.io/qt-6/qt-add-executable.html#target-creation
else()
    if(ANDROID)
        add_library(ActorViewer SHARED
            ${PROJECT_SOURCES}
        )
# Define properties for Android with Qt 5 after find_package() calls as:
#    set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
    else()
        add_executable(ActorViewer
            ${PROJECT_SOURCES}
        )
    endif()
endif()

target_link_libraries(ActorViewer PRIVATE Qt${QT_VERSION_MAJOR}::Widgets)
target_link_libraries(ActorViewer PUBLIC mastodonpp)

set_target_properties(ActorViewer PROPERTIES
    MACOSX_BUNDLE_GUI_IDENTIFIER space.twilightsparkle.ActorViewer
    MACOSX_BUNDLE_BUNDLE_VERSION ${PROJECT_VERSION}
    MACOSX_BUNDLE_SHORT_VERSION_STRING ${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}
    MACOSX_BUNDLE TRUE
    WIN32_EXECUTABLE TRUE
)

install(TARGETS ActorViewer
    BUNDLE DESTINATION .
    LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})

if(QT_VERSION_MAJOR EQUAL 6)
    qt_finalize_executable(ActorViewer)
endif()