Skip to content

Commit

Permalink
include tun node only for linux for now
Browse files Browse the repository at this point in the history
  • Loading branch information
radkesvat committed Aug 7, 2024
1 parent 034c9a4 commit 5d12ea9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,9 @@ option(INCLUDE_CONNECTOR "link Connector staticly to the core" TRUE)
option(INCLUDE_TCPCONNECTOR "link TcpConnector staticly to the core" TRUE)
option(INCLUDE_UDP_CONNECTOR "link UdpConnector staticly to the core" TRUE)
option(INCLUDE_BRIDGE "link Bridge staticly to the core" TRUE)
option(INCLUDE_TUNDEVICE "link TunDevice staticly to the core" TRUE)
if(LINUX) # todo (tun other platforms)
option(INCLUDE_TUNDEVICE "link TunDevice staticly to the core" TRUE)
endif()

option(INCLUDE_OPENSSL_SERVER "link OpenSSlServer staticly to the core" TRUE)
option(INCLUDE_OPENSSL_CLIENT "link OpenSSLClient staticly to the core" TRUE)
Expand Down

0 comments on commit 5d12ea9

Please sign in to comment.