vcpkg/ports/sdl1-net/CMakeLists.txt
Neil McNeight 4bc01b00e0 [sdl1][sdl1-net] Add new port for SDL v1.2.15 & SDL_net v1.2.8 (#4492)
* [sdl1][sdl1-net] Add new port for SDL v1.2.15 & SDL_net v1.2.8
* Version 1.2 is still required for building DOSbox

* [sdl1][sdl1-net] Revise to install to expected paths
* Headers go in include\ instead of include\SDL1
* Use updated .sln and .vcxproj files

* [sdl1] Modernize
2018-10-25 11:57:39 -07:00

29 lines
844 B
CMake

cmake_minimum_required(VERSION 3.0)
project(SDL1_NET C)
if (MSVC)
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} /wd4244 /wd4996")
endif()
find_path(SDL_INCLUDE_DIR SDL.h)
find_library(SDL_LIBRARY NAMES SDLd SDL)
add_library(SDL_net SDLnet.c SDLnetselect.c SDLnetTCP.c SDLnetUDP.c version.rc)
set_target_properties(SDL_net PROPERTIES DEFINE_SYMBOL SDL1_EXPORTS)
target_compile_definitions(SDL_net PRIVATE _WINSOCK_DEPRECATED_NO_WARNINGS)
target_include_directories(SDL_net PRIVATE ${SDL_INCLUDE_DIR})
target_link_libraries(SDL_net ${SDL_LIBRARY} ws2_32 iphlpapi)
install(TARGETS SDL_net
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib)
if(NOT DEFINED SDL_NET_SKIP_HEADERS)
install(FILES SDL_net.h DESTINATION include)
endif()
message(STATUS "Link-time dependencies:")
message(STATUS " " ${SDL_LIBRARY})