summary refs log tree commit diff stats
path: root/CMakeLists.txt
blob: deefb2146a7ca722b65f1bd8b1456c02f2783f3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
cmake_minimum_required (VERSION 3.28.3)
project (gen4uploader)

add_subdirectory(vendor/libwifi)

set(SOURCE_FILES
  src/main.cpp
  src/beacon_data.cpp
)

include_directories(
  vendor/libwifi/src
)

add_executable(gen4uploader ${SOURCE_FILES})
target_link_libraries(gen4uploader wifi)