mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-21 11:59:28 +00:00
19 lines
276 B
CMake
19 lines
276 B
CMake
add_library(backend
|
|
accounts.cpp
|
|
types.cpp
|
|
utils.cpp
|
|
)
|
|
|
|
target_include_directories(backend
|
|
PUBLIC
|
|
include/
|
|
)
|
|
|
|
target_link_libraries(backend
|
|
PRIVATE
|
|
Qt${QT_VERSION_MAJOR}::Core
|
|
Qt${QT_VERSION_MAJOR}::Quick
|
|
statusgo_shared
|
|
|
|
)
|