Skip to content

Commit

Permalink
fix compilation: ensure Kyber / Dilithium headers are generated
Browse files Browse the repository at this point in the history
Signed-off-by: Stephan Mueller <[email protected]>
  • Loading branch information
smuellerDD committed Oct 20, 2023
1 parent 1000c3b commit ea11449
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -129,15 +129,17 @@ include_files = [ ]

include_internal_dirs = include_directories([ 'internal/api' ])

setupdirs = [ 'kem/api',
'signature/api',
]

subdirs = [ 'aead/src',
'drng/src',
'hash/src',
'internal/src',
'kdf/src',
'kem/api',
'kem/src',
'otp/src',
'signature/api',
'signature/src',
'sym/src'

Expand Down Expand Up @@ -308,6 +310,12 @@ leancrypto_support_libs = [ ]
# External libraries leancrypto should link to
leancrypto_link = [ ]

# First the setup
foreach n : setupdirs
subdir(n)
endforeach

# Then the actual compilation
foreach n : subdirs
subdir(n)
endforeach
Expand Down

0 comments on commit ea11449

Please sign in to comment.