CI: Test consuming the exported CMake configs.

This commit is contained in:
Pierre Wendling
2023-08-06 15:08:28 -04:00
parent a89cd65980
commit 3139173568
5 changed files with 141 additions and 0 deletions

7
tests/cmake/crypto.c Normal file
View File

@@ -0,0 +1,7 @@
#include <openssl/crypto.h>
int main(void) {
OPENSSL_init_crypto(0, NULL);
OPENSSL_cleanup();
return 0;
}