blob: 9abf5a2722b806e1bc0d27c22716e6a8f565bb27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
lib_session_formats = declare_dependency(
include_directories: [ '.', include ],
link_with: library('sessionformats',
[ 'session_json.cpp' ],
include_directories: include,
dependencies: dep_qt5
)
)
test('session: json format', executable('session_json',
sources: 'test/json.cpp',
dependencies: [ dep_qt5, dep_catch, lib_session_formats ]
))
|