mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
10 lines
237 B
C++
10 lines
237 B
C++
#include <dcmtk/dcmdata/dcjson.h>
|
|
#include <dcmtk/dcmtls/tlslayer.h>
|
|
|
|
int main()
|
|
{
|
|
auto djfp = DcmJsonFormatPretty(OFTrue);
|
|
DcmTLSTransportLayer::initializeOpenSSL(); // https://github.com/microsoft/vcpkg/issues/38476
|
|
return 0;
|
|
}
|