Skip to content

Commit

Permalink
monocypher: add the test by default
Browse files Browse the repository at this point in the history
  • Loading branch information
rtgiskard committed Oct 27, 2024
1 parent 407fb44 commit 4ebb827
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions subprojects/packagefiles/monocypher/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,14 @@ monocypher_dep = declare_dependency(
include_directories: ['src', 'src/optional'],
link_with: monocypher_lib,
)

monocypher_test = executable(
'monocypher_test', [
'tests/test.c',
'tests/utils.c',
],
include_directories: ['tests'],
dependencies: monocypher_dep,
)

test('monocypher', monocypher_test)

0 comments on commit 4ebb827

Please sign in to comment.