151 lines
4.0 KiB
CMake
151 lines
4.0 KiB
CMake
|
set(MODULE_NAME "teaclient_connection")
|
||
|
|
||
|
#set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address -fno-omit-frame-pointer -static-libasan -lasan -lubsan")
|
||
|
set(SOURCE_FILES
|
||
|
src/logger.cpp
|
||
|
src/EventLoop.cpp
|
||
|
src/hwuid.cpp
|
||
|
|
||
|
src/connection/ft/FileTransferManager.cpp
|
||
|
src/connection/ft/FileTransferObject.cpp
|
||
|
|
||
|
src/audio/AudioSamples.cpp
|
||
|
src/audio/AudioDevice.cpp
|
||
|
src/audio/AudioMerger.cpp
|
||
|
src/audio/AudioOutput.cpp
|
||
|
src/audio/AudioInput.cpp
|
||
|
src/audio/AudioResampler.cpp
|
||
|
src/audio/AudioReframer.cpp
|
||
|
|
||
|
src/audio/filter/FilterVad.cpp
|
||
|
src/audio/filter/FilterThreshold.cpp
|
||
|
src/audio/filter/FilterState.cpp
|
||
|
|
||
|
src/audio/codec/Converter.cpp
|
||
|
src/audio/codec/OpusConverter.cpp
|
||
|
)
|
||
|
|
||
|
set(NODEJS_SOURCE_FILES
|
||
|
src/bindings.cpp
|
||
|
|
||
|
src/connection/ServerConnection.cpp
|
||
|
src/connection/Socket.cpp
|
||
|
src/connection/ProtocolHandler.cpp
|
||
|
src/connection/ProtocolHandlerPOW.cpp
|
||
|
src/connection/ProtocolHandlerCrypto.cpp
|
||
|
src/connection/ProtocolHandlerPackets.cpp
|
||
|
src/connection/ProtocolHandlerCommands.cpp
|
||
|
src/connection/audio/AudioSender.cpp
|
||
|
src/connection/audio/AudioEventLoop.cpp
|
||
|
|
||
|
src/connection/audio/VoiceConnection.cpp
|
||
|
src/connection/audio/VoiceClient.cpp
|
||
|
|
||
|
src/audio/js/AudioPlayer.cpp
|
||
|
src/audio/js/AudioOutputStream.cpp
|
||
|
|
||
|
src/audio/js/AudioRecorder.cpp
|
||
|
src/audio/js/AudioConsumer.cpp
|
||
|
src/audio/js/AudioFilter.cpp
|
||
|
)
|
||
|
|
||
|
if (MSVC)
|
||
|
set(SOURCE_FILES ${SOURCE_FILES})
|
||
|
add_definitions(-DUSING_UV_SHARED)
|
||
|
else()
|
||
|
set(SOURCE_FILES ${SOURCE_FILES})
|
||
|
endif()
|
||
|
|
||
|
add_nodejs_module(${MODULE_NAME} ${SOURCE_FILES} ${NODEJS_SOURCE_FILES})
|
||
|
target_link_libraries(${MODULE_NAME} ${NODEJS_LIBRARIES})
|
||
|
#target_compile_options(${MODULE_NAME} PUBLIC "-fPIC")
|
||
|
|
||
|
find_package(TomMath REQUIRED)
|
||
|
include_directories(${TomMath_INCLUDE_DIR})
|
||
|
|
||
|
find_package(TomCrypt REQUIRED)
|
||
|
include_directories(${TomCrypt_INCLUDE_DIR})
|
||
|
|
||
|
find_package(DataPipes REQUIRED)
|
||
|
include_directories(${DataPipes_INCLUDE_DIR})
|
||
|
|
||
|
find_package(Libevent REQUIRED)
|
||
|
include_directories(${LIBEVENT_INCLUDE_DIRS})
|
||
|
message("libevent include dir: ${LIBEVENT_INCLUDE_DIRS}")
|
||
|
message("libevent static libraries: ${LIBEVENT_STATIC_LIBRARIES}")
|
||
|
|
||
|
find_package(TeaSpeak_SharedLib REQUIRED)
|
||
|
include_directories(${TeaSpeak_SharedLib_INCLUDE_DIR})
|
||
|
|
||
|
find_package(StringVariable REQUIRED)
|
||
|
include_directories(${StringVariable_INCLUDE_DIR})
|
||
|
|
||
|
find_package(Ed25519 REQUIRED)
|
||
|
include_directories(${ed25519_INCLUDE_DIR})
|
||
|
|
||
|
find_package(ThreadPool REQUIRED)
|
||
|
include_directories(${ThreadPool_INCLUDE_DIR})
|
||
|
if (WIN32)
|
||
|
add_compile_options(/NODEFAULTLIB:ThreadPoolStatic)
|
||
|
add_definitions(-DWINDOWS) #Required by ThreadPool
|
||
|
add_definitions(-D_CRT_SECURE_NO_WARNINGS) # Let windows allow strerror
|
||
|
add_definitions(-D_SILENCE_CXX17_OLD_ALLOCATOR_MEMBERS_DEPRECATION_WARNING) # For the FMT library
|
||
|
endif ()
|
||
|
|
||
|
find_package(Soxr REQUIRED)
|
||
|
include_directories(${soxr_INCLUDE_DIR})
|
||
|
|
||
|
find_package(PortAudio REQUIRED)
|
||
|
include_directories(${PortAudio_INCLUDE_DIR})
|
||
|
|
||
|
find_package(fvad REQUIRED)
|
||
|
include_directories(${fvad_INCLUDE_DIR})
|
||
|
|
||
|
find_package(Opus REQUIRED)
|
||
|
include_directories(${opus_INCLUDE_DIR})
|
||
|
|
||
|
find_package(spdlog REQUIRED)
|
||
|
|
||
|
set(REQUIRED_LIBRARIES
|
||
|
${TeaSpeak_SharedLib_LIBRARIES_STATIC}
|
||
|
|
||
|
${TomCrypt_LIBRARIES_STATIC}
|
||
|
${TomMath_LIBRARIES_STATIC}
|
||
|
|
||
|
${LIBEVENT_STATIC_LIBRARIES}
|
||
|
|
||
|
${StringVariable_LIBRARIES_STATIC}
|
||
|
${DataPipes_LIBRARIES_STATIC} #Needs to be static because something causes ca bad function call when loaded in electron
|
||
|
${ThreadPool_LIBRARIES_STATIC}
|
||
|
${soxr_LIBRARIES_STATIC}
|
||
|
${PortAudio_LIBRARIES_STATIC}
|
||
|
${fvad_LIBRARIES_STATIC}
|
||
|
${opus_LIBRARIES_STATIC}
|
||
|
|
||
|
${ed25519_LIBRARIES_STATIC}
|
||
|
|
||
|
spdlog::spdlog
|
||
|
)
|
||
|
|
||
|
if (WIN32)
|
||
|
set(REQUIRED_LIBRARIES ${REQUIRED_LIBRARIES} "Ws2_32.Lib")
|
||
|
else()
|
||
|
set(REQUIRED_LIBRARIES ${REQUIRED_LIBRARIES}
|
||
|
libstdc++fs.a
|
||
|
asound
|
||
|
jack.a
|
||
|
pthread
|
||
|
)
|
||
|
endif()
|
||
|
|
||
|
add_definitions(-DNO_OPEN_SSL)
|
||
|
target_link_libraries(${MODULE_NAME} ${REQUIRED_LIBRARIES})
|
||
|
target_compile_definitions(${MODULE_NAME} PUBLIC -DNODEJS_API)
|
||
|
|
||
|
add_executable(Audio-Test ${SOURCE_FILES} test/audio/main.cpp)
|
||
|
target_link_libraries(Audio-Test ${REQUIRED_LIBRARIES})
|
||
|
|
||
|
add_executable(HW-UID-Test src/hwuid.cpp)
|
||
|
target_link_libraries(HW-UID-Test
|
||
|
${REQUIRED_LIBRARIES}
|
||
|
)
|