vcpkg/ports/gettimeofday/CMakeLists.txt
xoviat 29f62852bd New port: MIT gettimeofday implementation (#2063)
* [gettimeofday] create CONTROL

* [gettimeofday] add source file

* [gettimeofday] add header

* [gettimeofday] create portfile

* [gettimeofday] add cmakelists.txt

* [gettimeofday/portfile] require static

* [gettimeofday/portfile] set source path

* [gettimeofday] create license

* [gettimeofday] remove duplicate headers
2017-10-26 22:08:00 -07:00

15 lines
338 B
CMake

cmake_minimum_required(VERSION 3.8)
project(gettimeofday C)
add_library(gettimeofday gettimeofday.c gettimeofday.def)
install(TARGETS gettimeofday
RUNTIME DESTINATION bin
ARCHIVE DESTINATION lib
LIBRARY DESTINATION lib
)
if(CMAKE_BUILD_TYPE STREQUAL "Release")
install(FILES gettimeofday.h DESTINATION include)
endif()