diff options
Diffstat (limited to 'vcpkg/ports/gettimeofday/CMakeLists.txt')
| -rw-r--r-- | vcpkg/ports/gettimeofday/CMakeLists.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/vcpkg/ports/gettimeofday/CMakeLists.txt b/vcpkg/ports/gettimeofday/CMakeLists.txt new file mode 100644 index 0000000..1f8d891 --- /dev/null +++ b/vcpkg/ports/gettimeofday/CMakeLists.txt @@ -0,0 +1,14 @@ +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() |