setup more proper logging and get stuff working maybe

This commit is contained in:
2025-03-26 20:57:23 -05:00
parent ea952e1981
commit ed8c594a30
5 changed files with 234 additions and 25 deletions

View File

@@ -1,7 +1,8 @@
#=======================================================================================================================
# PROJECT SETTINGS
#=======================================================================================================================
project('video-streaming-poc', 'cpp')
project('video-streaming-poc', 'cpp', version : '0.0.1-SNAPSHOT',
default_options : ['c_std=c17', 'cpp_std=c++20'])
#=======================================================================================================================
# DEPENDENCIES
@@ -13,7 +14,7 @@ opencv = dependency('opencv4', version : '>=4.0.0')
# SOURCE FILES
#=======================================================================================================================
# common files between client / server
common = ['transfer.h']
common = ['transfer.h', 'logging.h']
# client-only files
client = common + ['client.cpp']
# server-only files