2021-10-05 23:45:37 +08:00
|
|
|
set(SIGNALCATCHER_SOURCE signalcatcher.cpp)
|
|
|
|
if(WIN32)
|
|
|
|
set(SIGNALCATCHER_SOURCE signalcatcher_win32.cpp)
|
|
|
|
endif(WIN32)
|
|
|
|
|
2021-05-11 20:29:08 +03:00
|
|
|
target_sources(squawk PRIVATE
|
|
|
|
account.cpp
|
|
|
|
account.h
|
2022-04-08 19:18:15 +03:00
|
|
|
adapterfunctions.cpp
|
|
|
|
adapterfunctions.h
|
2021-05-11 20:29:08 +03:00
|
|
|
conference.cpp
|
|
|
|
conference.h
|
|
|
|
contact.cpp
|
|
|
|
contact.h
|
|
|
|
rosteritem.cpp
|
|
|
|
rosteritem.h
|
2021-10-05 23:45:37 +08:00
|
|
|
${SIGNALCATCHER_SOURCE}
|
2021-05-11 20:29:08 +03:00
|
|
|
signalcatcher.h
|
|
|
|
squawk.cpp
|
|
|
|
squawk.h
|
|
|
|
)
|
|
|
|
|
2021-10-06 01:51:01 +08:00
|
|
|
target_include_directories(squawk PRIVATE ${LMDB_INCLUDE_DIRS})
|
|
|
|
|
2021-05-11 20:29:08 +03:00
|
|
|
add_subdirectory(handlers)
|
2022-04-19 20:24:41 +03:00
|
|
|
add_subdirectory(storage)
|
2020-04-11 01:15:08 +03:00
|
|
|
add_subdirectory(passwordStorageEngines)
|
2022-08-22 23:29:43 +03:00
|
|
|
add_subdirectory(components)
|