intial commit

This commit is contained in:
2023-11-18 14:07:27 +01:00
commit ce321a6e33
9 changed files with 781 additions and 0 deletions

10
CMakeLists.txt Normal file
View File

@ -0,0 +1,10 @@
cmake_minimum_required(VERSION 2.4)
project(videosender)
set(CMAKE_CXX_STANDARD 17)
add_executable(videosender main.cpp webcam.cpp jpeg_img.cpp)
target_link_libraries( videosender -ljpeg )
add_definitions("-s -Wall")
install(TARGETS videosender RUNTIME DESTINATION bin)