Skip to content

Commit

Permalink
Fix atframework_utils_uuid_generator_check_def
Browse files Browse the repository at this point in the history
  • Loading branch information
owent committed Dec 26, 2024
1 parent bb6106b commit d3f2d41
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -215,21 +215,21 @@ if(ATFRAMEWORK_UTILS_ENABLE_UUID_INTERNAL_IMPLEMENT)
endif()
endmacro()

libatframe_utils_uuid_generator_check_def("fcntl.h" HAVE_FCNTL_H)
libatframe_utils_uuid_generator_check_def("inttypes.h" HAVE_INTTYPES_H)
libatframe_utils_uuid_generator_check_def("limits.h" HAVE_LIMITS_H)
libatframe_utils_uuid_generator_check_def("netinet/in.h" HAVE_NETINET_IN_H)
libatframe_utils_uuid_generator_check_def("stdlib.h" HAVE_STDLIB_H)
libatframe_utils_uuid_generator_check_def("string.h" HAVE_STRING_H)
libatframe_utils_uuid_generator_check_def("sys/file.h" HAVE_SYS_FILE_H)
libatframe_utils_uuid_generator_check_def("sys/ioctl.h" HAVE_SYS_IOCTL_H)
libatframe_utils_uuid_generator_check_def("sys/socket.h" HAVE_SYS_SOCKET_H)
libatframe_utils_uuid_generator_check_def("sys/time.h" HAVE_SYS_TIME_H)
libatframe_utils_uuid_generator_check_def("unistd.h" HAVE_UNISTD_H)
libatframe_utils_uuid_generator_check_def("net/if.h" HAVE_NET_IF_H)
libatframe_utils_uuid_generator_check_def("sys/un.h" HAVE_SYS_UN_H)
libatframe_utils_uuid_generator_check_def("sys/sockio.h" HAVE_SYS_SOCKIO_H)
libatframe_utils_uuid_generator_check_def("net/if_dl.h" HAVE_NET_IF_DL_H)
atframework_utils_uuid_generator_check_def("fcntl.h" HAVE_FCNTL_H)
atframework_utils_uuid_generator_check_def("inttypes.h" HAVE_INTTYPES_H)
atframework_utils_uuid_generator_check_def("limits.h" HAVE_LIMITS_H)
atframework_utils_uuid_generator_check_def("netinet/in.h" HAVE_NETINET_IN_H)
atframework_utils_uuid_generator_check_def("stdlib.h" HAVE_STDLIB_H)
atframework_utils_uuid_generator_check_def("string.h" HAVE_STRING_H)
atframework_utils_uuid_generator_check_def("sys/file.h" HAVE_SYS_FILE_H)
atframework_utils_uuid_generator_check_def("sys/ioctl.h" HAVE_SYS_IOCTL_H)
atframework_utils_uuid_generator_check_def("sys/socket.h" HAVE_SYS_SOCKET_H)
atframework_utils_uuid_generator_check_def("sys/time.h" HAVE_SYS_TIME_H)
atframework_utils_uuid_generator_check_def("unistd.h" HAVE_UNISTD_H)
atframework_utils_uuid_generator_check_def("net/if.h" HAVE_NET_IF_H)
atframework_utils_uuid_generator_check_def("sys/un.h" HAVE_SYS_UN_H)
atframework_utils_uuid_generator_check_def("sys/sockio.h" HAVE_SYS_SOCKIO_H)
atframework_utils_uuid_generator_check_def("net/if_dl.h" HAVE_NET_IF_DL_H)

set_source_files_properties("${PROJECT_ATFRAME_UTILS_SOURCE_DIR}/random/uuid_generator.cpp"
PROPERTIES COMPILE_DEFINITIONS "${ATFRAMEWORK_UTILS_UUID_GENERATOR_DEFS}")
Expand Down

0 comments on commit d3f2d41

Please sign in to comment.