diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-03-09 13:19:22 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-03-09 13:19:22 +0000 |
commit | c21c3b0befeb46a51b6bf3758ffa30813bea0ff0 (patch) | |
tree | 9754ff1ca740f6346cf8483ec915d4054bc5da2d /fluent-bit/lib/lwrb/cmake | |
parent | Adding upstream version 1.43.2. (diff) | |
download | netdata-c21c3b0befeb46a51b6bf3758ffa30813bea0ff0.tar.xz netdata-c21c3b0befeb46a51b6bf3758ffa30813bea0ff0.zip |
Adding upstream version 1.44.3.upstream/1.44.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'fluent-bit/lib/lwrb/cmake')
-rw-r--r-- | fluent-bit/lib/lwrb/cmake/i686-w64-mingw32-gcc.cmake | 7 | ||||
-rw-r--r-- | fluent-bit/lib/lwrb/cmake/x86_64-w64-mingw32-gcc.cmake | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/fluent-bit/lib/lwrb/cmake/i686-w64-mingw32-gcc.cmake b/fluent-bit/lib/lwrb/cmake/i686-w64-mingw32-gcc.cmake new file mode 100644 index 000000000..334d580d6 --- /dev/null +++ b/fluent-bit/lib/lwrb/cmake/i686-w64-mingw32-gcc.cmake @@ -0,0 +1,7 @@ +set(CMAKE_SYSTEM_NAME Windows) + +# Some default GCC settings +set(CMAKE_C_COMPILER i686-w64-mingw32-gcc) +set(CMAKE_CXX_COMPILER i686-w64-mingw32-g++) + +set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) diff --git a/fluent-bit/lib/lwrb/cmake/x86_64-w64-mingw32-gcc.cmake b/fluent-bit/lib/lwrb/cmake/x86_64-w64-mingw32-gcc.cmake new file mode 100644 index 000000000..1d8243373 --- /dev/null +++ b/fluent-bit/lib/lwrb/cmake/x86_64-w64-mingw32-gcc.cmake @@ -0,0 +1,7 @@ +set(CMAKE_SYSTEM_NAME Windows) + +# Some default GCC settings +set(CMAKE_C_COMPILER x86_64-w64-mingw32-gcc) +set(CMAKE_CXX_COMPILER x86_64-w64-mingw32-g++) + +set(CMAKE_TRY_COMPILE_TARGET_TYPE STATIC_LIBRARY) |