mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 02:19:00 +08:00
15 lines
362 B
CMake
15 lines
362 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/manual-link
|
|
LIBRARY DESTINATION lib/manual-link
|
|
)
|
|
|
|
if(CMAKE_BUILD_TYPE STREQUAL "Release")
|
|
install(FILES gettimeofday.h DESTINATION include)
|
|
endif()
|