Stash old Mac Ethernet tap code in attic.

This commit is contained in:
Adam Ierymenko 2021-01-27 14:19:21 -05:00
parent d4f6507c00
commit f63f04737b
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3
5 changed files with 0 additions and 7 deletions

View file

@ -2,7 +2,6 @@ cmake_minimum_required(VERSION 3.0)
project(zt_osdep) project(zt_osdep)
set(src set(src
EthernetTap.cpp
ManagedRoute.cpp ManagedRoute.cpp
OSUtils.cpp OSUtils.cpp
rust-osdep.cpp rust-osdep.cpp
@ -10,7 +9,6 @@ set(src
set(headers set(headers
BlockingQueue.hpp BlockingQueue.hpp
EthernetTap.hpp
ManagedRoute.hpp ManagedRoute.hpp
OSUtils.hpp OSUtils.hpp
Thread.hpp Thread.hpp
@ -20,11 +18,6 @@ if(WIN32)
set(src ${src} WindowsEthernetTap.cpp) set(src ${src} WindowsEthernetTap.cpp)
set(headers ${headers} WindowsEthernetTap.hpp) set(headers ${headers} WindowsEthernetTap.hpp)
elseif(UNIX) elseif(UNIX)
if(APPLE)
set(src ${src} MacEthernetTap.cpp MacKextEthernetTap.cpp)
set(headers ${headers} MacEthernetTap.hpp MacKextEthernetTap.hpp)
endif(APPLE)
if(CMAKE_SYSTEM_NAME MATCHES "BSD") if(CMAKE_SYSTEM_NAME MATCHES "BSD")
set(src ${src} BSDEthernetTap.cpp) set(src ${src} BSDEthernetTap.cpp)
set(headers ${headers} BSDEthernetTap.hpp) set(headers ${headers} BSDEthernetTap.hpp)