Merge pull request #277300 from panicgh/fastcdr

fastcdr: fix build tests
This commit is contained in:
Robert Scott 2024-01-03 21:22:20 +00:00 committed by GitHub
commit cdbeb9666c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -24,8 +24,8 @@ stdenv.mkDerivation (finalAttrs: {
];
cmakeFlags = lib.optional (stdenv.hostPlatform.isStatic) "-DBUILD_SHARED_LIBS=OFF"
# fastcdr doesn't respect BUILD_TESTING
++ lib.optional (stdenv.hostPlatform == stdenv.buildPlatform) "-DEPROSIMA_BUILD_TESTS=ON"
# upstream turns BUILD_TESTING=OFF by default and doesn't honor cmake's default (=ON)
++ lib.optional (finalAttrs.finalPackage.doCheck) "-DBUILD_TESTING=ON"
++ lib.optional withDocs "-DBUILD_DOCUMENTATION=ON";
outputs = [ "out" ] ++ lib.optional withDocs "doc";