Move to kernel style SPDX license identifiers
[lttng-ust.git] / doc / examples / cmake-multiple-shared-libraries / tester.cpp
CommitLineData
c2da416a 1/*
c0c0989a 2 * SPDX-License-Identifier: MIT
c2da416a 3 *
c0c0989a 4 * Copyright (C) 2016 Sebastien Boisvert <sboisvert@gydle.com>
c2da416a
SB
5 */
6
7#include "aligner-lib.h"
8#include "tester-lib.h"
9
10int main(int argc, char **argv)
11{
12 /* Generate alignment */
b57809aa 13 align_query("moleculeX");
c2da416a
SB
14
15 /* Test alignment */
b57809aa 16 test_alignment("my-alignment");
c2da416a
SB
17
18 return 0;
19}
This page took 0.023392 seconds and 4 git commands to generate.