2026-09-15 17:54:16 +02:00
|
|
|
add_executable(voicecat-dotnet-oracle main.cpp)
|
|
|
|
|
target_link_libraries(voicecat-dotnet-oracle PRIVATE voicecat::voicecat)
|
|
|
|
|
target_include_directories(voicecat-dotnet-oracle PRIVATE ${CMAKE_SOURCE_DIR}/core/src)
|
|
|
|
|
target_compile_features(voicecat-dotnet-oracle PRIVATE cxx_std_20)
|
2026-09-15 18:04:20 +02:00
|
|
|
|
|
|
|
|
add_executable(voicecat-dotnet-tls-oracle tls.cpp)
|
|
|
|
|
target_link_libraries(voicecat-dotnet-tls-oracle PRIVATE voicecat::voicecat)
|
|
|
|
|
target_include_directories(voicecat-dotnet-tls-oracle PRIVATE ${CMAKE_SOURCE_DIR}/core/src)
|
|
|
|
|
target_compile_features(voicecat-dotnet-tls-oracle PRIVATE cxx_std_20)
|
2026-09-15 22:51:33 +02:00
|
|
|
|
2026-09-15 22:53:54 +02:00
|
|
|
add_executable(voicecat-dotnet-voice-oracle voice.cpp)
|
|
|
|
|
target_link_libraries(voicecat-dotnet-voice-oracle PRIVATE voicecat::voicecat)
|
|
|
|
|
target_compile_features(voicecat-dotnet-voice-oracle PRIVATE cxx_std_20)
|
|
|
|
|
|
2026-09-15 22:51:33 +02:00
|
|
|
add_executable(voicecat-dotnet-dsp-oracle dsp.cpp)
|
|
|
|
|
target_link_libraries(voicecat-dotnet-dsp-oracle PRIVATE voicecat::voicecat)
|
|
|
|
|
target_include_directories(voicecat-dotnet-dsp-oracle PRIVATE ${CMAKE_SOURCE_DIR}/core/src)
|
|
|
|
|
target_compile_features(voicecat-dotnet-dsp-oracle PRIVATE cxx_std_20)
|
|
|
|
|
|
|
|
|
|
find_package(unofficial-sodium CONFIG REQUIRED)
|
|
|
|
|
add_executable(voicecat-dotnet-password-oracle passwords.cpp)
|
|
|
|
|
target_link_libraries(voicecat-dotnet-password-oracle PRIVATE unofficial-sodium::sodium)
|
|
|
|
|
target_compile_features(voicecat-dotnet-password-oracle PRIVATE cxx_std_20)
|
|
|
|
|
|
|
|
|
|
if(VOICECAT_BUILD_SERVER)
|
|
|
|
|
add_executable(voicecat-dotnet-database-oracle database.cpp)
|
|
|
|
|
target_link_libraries(voicecat-dotnet-database-oracle PRIVATE voicecat::server)
|
|
|
|
|
target_compile_features(voicecat-dotnet-database-oracle PRIVATE cxx_std_20)
|
|
|
|
|
endif()
|