Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add PAM tests for chat operations #24

Draft
wants to merge 16 commits into
base: master
Choose a base branch
from
Draft
16 changes: 15 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ set(USE_CALLBACK_API ON)
set(USE_SET_DNS_SERVERS ON)
set(USE_IPV6 ON)
set(USE_SUBSCRIBE_EVENT_ENGINE ON)
set(USE_REVOKE_TOKEN_API ON)
set(USE_CRYPTO_API ON)
set(PUBNUB_CRYPTO_API ON)
set(OPENSSL ON)
set(OPENSSL_ROOT_DIR "C:/Program Files/Epic Games/UE_5.4/Engine/Source/ThirdParty/OpenSSL/1.1.1t")
set(CUSTOM_OPENSSL_LIB_DIR "lib/Win64/VS2015/Release")
set(CUSTOM_OPENSSL_INCLUDE_DIR "include/Win64/VS2015")
Comment on lines +61 to +63
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We cannot push it into the repository.
It will break for me and @jakub-grzesiowski .


if(WIN32 OR WIN64 OR MSVC)
set(CUSTOM_BOOL_TYPE _Bool)
Expand Down Expand Up @@ -198,7 +205,14 @@ set(SOURCES

add_library(pubnub-chat SHARED ${SOURCES})

target_compile_options(pubnub-chat PRIVATE -DPUBNUB_NTF_RUNTIME_SELECTION -DPUBNUB_USE_SUBSCRIBE_EVENT_ENGINE=1 -DPUBNUB_USE_SUBSCRIBE_V2=1 -DPUBNUB_CALLBACK_API=1 -DPUBNUB_SYNC_API=1 -DPUBNUB_SET_DNS_SERVERS=1 -DPUBNUB_USE_IPV6=1)
target_compile_options(pubnub-chat PRIVATE -DPUBNUB_NTF_RUNTIME_SELECTION -DPUBNUB_USE_SUBSCRIBE_EVENT_ENGINE=1 -DPUBNUB_USE_SUBSCRIBE_V2=1 -DPUBNUB_CALLBACK_API=1 -DPUBNUB_SYNC_API=1 -DPUBNUB_SET_DNS_SERVERS=1 -DPUBNUB_USE_IPV6=1 -DUSE_GRANT_TOKEN_API=1 -DUSE_REVOKE_TOKEN_API=1 -DUSE_CRYPTO_API=1 -DPUBNUB_CRYPTO_API=1 -DOPENSSL=1 -DOPENSSL_ROOT_DIR="C:/Program Files/Epic Games/UE_5.4/Engine/Source/ThirdParty/OpenSSL/1.1.1t" -DCUSTOM_OPENSSL_LIB_DIR="lib/Win64/VS2015/Release" -DCUSTOM_OPENSSL_INCLUDE_DIR="include/Win64/VS2015")
set(USE_GRANT_TOKEN_API ON)
set(USE_REVOKE_TOKEN_API ON)
set(USE_CRYPTO_API ON)
set(OPENSSL ON)
set(OPENSSL_ROOT_DIR "C:/Program Files/Epic Games/UE_5.4/Engine/Source/ThirdParty/OpenSSL/1.1.1t")
set(CUSTOM_OPENSSL_LIB_DIR "lib/Win64/VS2015/Release")
set(CUSTOM_OPENSSL_INCLUDE_DIR "include/Win64/VS2015")

target_link_libraries(pubnub-chat PRIVATE -lpthread pubnub)

Expand Down
Loading