extracted clientId from clientInfo to use it in the presence information later

This commit is contained in:
Blue 2023-03-13 22:07:10 +03:00
parent 8ec0af3205
commit 76a9c5da0c
Signed by: blue
GPG key ID: 9B203B252A63EE38
6 changed files with 137 additions and 38 deletions

View file

@ -1,33 +1,43 @@
target_sources(squawk PRIVATE
enums.h
set(SOURCE_FILES
global.cpp
global.h
exception.cpp
exception.h
icons.cpp
icons.h
message.cpp
message.h
messageinfo.cpp
messageinfo.h
order.h
shared.h
utils.cpp
utils.h
vcard.cpp
vcard.h
pathcheck.cpp
pathcheck.h
clientinfo.h
clientinfo.cpp
identity.h
identity.cpp
form.h
form.cpp
field.h
field.cpp
keyinfo.cpp
keyinfo.h
info.cpp
clientid.cpp
)
set(HEADER_FILES
order.h
shared.h
enums.h
global.h
exception.h
icons.h
message.h
messageinfo.h
utils.h
vcard.h
pathcheck.h
clientinfo.h
identity.h
form.h
field.h
keyinfo.h
info.h
)
clientid.h
)
target_sources(squawk PRIVATE
${SOURCE_FILES}
${HEADER_FILES}
)