# -*- mode: python -*-
Import("env")

env = env.Clone()

env.Library(
    target='encryption_options',
    source=[
        'encryption_options.cpp',
    ],
    LIBDEPS=[
    ],
)

