find_all_sources(. exports_SRCS)
find_all_sources(util exports_util_SRCS)
if(NOT WIN32)
  list(REMOVE_ITEM exports_SRCS ./win32-dirent.cpp)
  add_library(wrapper STATIC wrapper.c)
else(NOT WIN32)
  list(REMOVE_ITEM exports_SRCS ./wrapper.c)
  find_all_sources(emu_socket socket_SRCS)
endif()
add_sources(${exports_SRCS} ${exports_util_SRCS} ${socket_SRCS})
