Refactor frequency analysis
This commit is contained in:
parent
5a30f34558
commit
2503961778
4 changed files with 29 additions and 27 deletions
|
@ -3,6 +3,6 @@ project('cryptopals', 'c')
|
|||
cc = meson.get_compiler('c')
|
||||
m_dep = cc.find_library('m', required : false)
|
||||
|
||||
executable('ex01', ['ex01/main.c', 'utils.c'])
|
||||
executable('ex02', ['ex02/main.c', 'utils.c'])
|
||||
executable('ex01', ['ex01/main.c', 'utils.c'], dependencies: m_dep)
|
||||
executable('ex02', ['ex02/main.c', 'utils.c'], dependencies: m_dep)
|
||||
executable('ex03', ['ex03/main.c', 'utils.c'], dependencies: m_dep)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue