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

6
tests/cmake/ssl.c Normal file
View File

@@ -0,0 +1,6 @@
#include <openssl/ssl.h>
int main(void) {
SSL_library_init();
return 0;
}