File: CMakeLists.txt

package info (click to toggle)
simdjson 4.2.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 27,936 kB
  • sloc: cpp: 171,612; ansic: 19,122; sh: 1,126; python: 842; makefile: 47; ruby: 25; javascript: 13
file content (6 lines) | stat: -rw-r--r-- 315 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
add_library(simdjson-windows-headers INTERFACE)
if(MSVC OR MINGW)
  target_include_directories(simdjson-windows-headers INTERFACE .)
  # getopt.h triggers bogus CRT_SECURE warnings. If you include them, you need this.
  target_compile_definitions(simdjson-windows-headers INTERFACE _CRT_SECURE_NO_WARNINGS)
endif()