package embox.project.server61850.cmd

@AutoCmd
@Cmd(name = "tls_server",
    help = "IEC61850 server with TLS",
    man = '''
        AUTHOR
            Valery Iline ported to embox.
    ''')
@BuildDepends(third_party.lib.libiec61850)
@Build(stage=2)
module tls_server {
    @Cflags("-Wno-undef")
	source "tls_server_example.c"
    @Cflags("-Wno-undef")
	source "static_model.c"
	depends third_party.lib.mbedtls
	depends third_party.lib.libiec61850
}

