Compare commits
6 Commits
main
...
subproject
Author | SHA1 | Date | |
---|---|---|---|
bbd03b56bb | |||
823ebbe42d | |||
35d3428321 | |||
fa85202c3d | |||
1d2084a017 | |||
bb82ff8317 |
4
.gitmodules
vendored
4
.gitmodules
vendored
@ -1,3 +1,3 @@
|
|||||||
[submodule "source/rc-switch"]
|
[submodule "source/RCSwitch/rc-switch"]
|
||||||
path = source/rc-switch
|
path = source/RCSwitch/rc-switch
|
||||||
url = git@github.com:sui77/rc-switch.git
|
url = git@github.com:sui77/rc-switch.git
|
||||||
|
@ -1,37 +1,7 @@
|
|||||||
cmake_minimum_required(VERSION 3.6)
|
cmake_minimum_required(VERSION 3.6)
|
||||||
|
|
||||||
find_package(Qt5Widgets)
|
add_subdirectory(RCSwitch)
|
||||||
|
add_subdirectory(sniffer)
|
||||||
set(CMAKE_CXX_STANDARD 11)
|
add_subdirectory(qsniff)
|
||||||
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
add_subdirectory(sniff)
|
||||||
set(CMAKE_AUTOMOC ON)
|
|
||||||
set(CMAKE_AUTOUIC ON)
|
|
||||||
|
|
||||||
add_definitions(-DRPI)
|
|
||||||
|
|
||||||
add_library(rc-switch
|
|
||||||
rc-switch/RCSwitch.cpp
|
|
||||||
rc-switch/RCSwitch.h
|
|
||||||
)
|
|
||||||
|
|
||||||
add_executable(qSniff
|
|
||||||
qsniff.cpp
|
|
||||||
mainwindow.cpp
|
|
||||||
mainwindow.h
|
|
||||||
mainwindow.ui
|
|
||||||
sniffthread.cpp
|
|
||||||
sniffthread.h
|
|
||||||
sniffer.cpp
|
|
||||||
sniffer.h
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(qSniff rc-switch wiringPi Qt5::Widgets)
|
|
||||||
|
|
||||||
add_executable(Sniff
|
|
||||||
sniff.cpp
|
|
||||||
sniffer.cpp
|
|
||||||
sniffer.h
|
|
||||||
)
|
|
||||||
|
|
||||||
target_link_libraries(Sniff rc-switch wiringPi)
|
|
||||||
|
|
||||||
|
21
source/RCSwitch/CMakeLists.txt
Normal file
21
source/RCSwitch/CMakeLists.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
project(rc-switch)
|
||||||
|
cmake_minimum_required(VERSION 3.6)
|
||||||
|
|
||||||
|
add_library(${PROJECT_NAME}
|
||||||
|
rc-switch/RCSwitch.cpp
|
||||||
|
rc-switch/RCSwitch.h
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
wiringPi
|
||||||
|
)
|
||||||
|
|
||||||
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
PUBLIC rc-switch
|
||||||
|
)
|
||||||
|
|
||||||
|
target_compile_definitions(${PROJECT_NAME}
|
||||||
|
PUBLIC RPI
|
||||||
|
)
|
||||||
|
|
||||||
|
|
24
source/qsniff/CMakeLists.txt
Normal file
24
source/qsniff/CMakeLists.txt
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
project(qSniff)
|
||||||
|
cmake_minimum_required(VERSION 3.6)
|
||||||
|
|
||||||
|
find_package(Qt5Widgets)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
set(CMAKE_INCLUDE_CURRENT_DIR ON)
|
||||||
|
set(CMAKE_AUTOMOC ON)
|
||||||
|
set(CMAKE_AUTOUIC ON)
|
||||||
|
|
||||||
|
add_executable(${PROJECT_NAME}
|
||||||
|
qsniff.cpp
|
||||||
|
mainwindow.cpp
|
||||||
|
mainwindow.h
|
||||||
|
mainwindow.ui
|
||||||
|
sniffthread.cpp
|
||||||
|
sniffthread.h
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
sniffer
|
||||||
|
Qt5::Widgets
|
||||||
|
)
|
||||||
|
|
15
source/sniff/CMakeLists.txt
Normal file
15
source/sniff/CMakeLists.txt
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
project(Sniff)
|
||||||
|
cmake_minimum_required(VERSION 3.6)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
||||||
|
add_executable(${PROJECT_NAME}
|
||||||
|
sniff.cpp
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
sniffer
|
||||||
|
rc-switch
|
||||||
|
wiringPi
|
||||||
|
)
|
||||||
|
|
18
source/sniffer/CMakeLists.txt
Normal file
18
source/sniffer/CMakeLists.txt
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
project(sniffer)
|
||||||
|
cmake_minimum_required(VERSION 3.6)
|
||||||
|
|
||||||
|
set(CMAKE_CXX_STANDARD 11)
|
||||||
|
|
||||||
|
add_library(${PROJECT_NAME}
|
||||||
|
sniffer.cpp
|
||||||
|
sniffer.h
|
||||||
|
)
|
||||||
|
|
||||||
|
target_link_libraries(${PROJECT_NAME}
|
||||||
|
rc-switch
|
||||||
|
)
|
||||||
|
|
||||||
|
target_include_directories(${PROJECT_NAME}
|
||||||
|
PUBLIC .
|
||||||
|
)
|
||||||
|
|
@ -1,6 +1,6 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "rc-switch/RCSwitch.h"
|
#include "RCSwitch.h"
|
||||||
|
|
||||||
class Sniffer
|
class Sniffer
|
||||||
{
|
{
|
Reference in New Issue
Block a user