summaryrefslogtreecommitdiff
path: root/src/bookmarks/CMakeLists.txt
blob: 517aa2f64517eb6d71d4eee59c84321acb863a55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
add_library(bookmarks STATIC
#        bookmarkmanager.cpp bookmarkmanager.h
#        bookmarkowner.cpp bookmarkowner.h
#        bookmarkscontextmenu.cpp bookmarkscontextmenu.h
#        bookmarksmenu.cpp bookmarksmenu.h
#        bookmarkstoolbar.cpp bookmarkstoolbar.h
    # Bookmarks Model
    bookmarkstreeitem.cpp bookmarkstreeitem.hpp
    bookmarkstreemodel.cpp bookmarkstreemodel.hpp
    bookmarkstreeformats.hpp
    bookmarkstreeformat_xbel_read.cpp bookmarkstreeformat_xbel_write.cpp
    # Bookmark Manager
    bookmarkmanager.cpp bookmarkmanager.hpp
)
target_include_directories(bookmarks PUBLIC ${CMAKE_SOURCE_DIR}/src)
target_link_libraries(bookmarks PUBLIC Qt6::Core Qt6::Widgets)

if(TESTING)
    add_executable(xbel test/xbel.cpp)
    target_link_libraries(xbel GTest::gtest GTest::gtest_main bookmarks)
    gtest_discover_tests(xbel)
endif()