Fixed CMakeLists and BaseICMP.cpp.
Some checks failed
Build & Release / Linux-AMD64-Build (push) Has been cancelled
Build & Release / Linux-AARCH64-Build (push) Has been cancelled
Build & Release / Windows-AMD64-Build (push) Has been cancelled

This commit is contained in:
Karutoh 2025-03-25 19:42:40 -07:00
parent eb3d345c5a
commit ce225b2888
2 changed files with 5 additions and 10 deletions

View File

@ -193,12 +193,10 @@ set(EHS_SOURCES
include/ehs/io/socket/ehc/NetClientCh.h
src/io/socket/ehc/NetClientCh.cpp
src/io/socket/ehc/NetServerCh.cpp
src/io/socket/ehc/NetUtils.cpp
src/io/socket/BaseICMP.cpp
include/ehs/io/socket/ICMP_LNX.h
src/io/socket/ICMP_LNX.cpp
include/ehs/io/socket/ICMP.h
src/io/socket/ICMP_LNX.cpp
src/io/socket/ehc/NetUtils.cpp
include/ehs/io/socket/BaseICMP.h src/io/socket/BaseICMP.cpp
include/ehs/io/socket/ICMP_LNX.h src/io/socket/ICMP_LNX.cpp
include/ehs/io/socket/ICMP.h
)
if (IS_OS_WINDOWS)
@ -262,8 +260,7 @@ endif()
#message("${CMAKE_CXX_FLAGS}")
add_library(EHS_Stc STATIC ${EHS_SOURCES})
add_library(EHS_Dyn SHARED ${EHS_SOURCES}
include/ehs/io/socket/BaseICMP.h)
add_library(EHS_Dyn SHARED ${EHS_SOURCES})
add_executable(StrToHash src/StrToHash.cpp)
target_compile_definitions(EHS_Dyn PRIVATE EHS_LIB_EXPORT)

View File

@ -1,8 +1,6 @@
#include "ehs/io/socket/BaseICMP.h"
#include "ehs/Serializer.h"
#include <netinet/ip.h>
namespace ehs
{