mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 20:23:41 +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;
|
||
|
}
|