mirror of
https://github.com/open-quantum-safe/liboqs.git
synced 2025-10-05 00:05:12 -04:00
10 lines
826 B
Plaintext
10 lines
826 B
Plaintext
-->{% for family in instructions['kems'] %}{% for scheme in family['schemes'] %}
|
|
<ClCompile Include="..\..\src\kem\{{ family['name'] }}\kem_{{ family['name'] }}_{{ scheme['scheme_c'] }}.c" />
|
|
{%- for file in scheme['sources'] %}
|
|
<ClCompile Include="..\..\src\kem\{{ family['name'] }}\pqclean_{{ scheme['pqclean_scheme'] }}_{{ scheme['implementation'] }}\{{ file }}" />{% endfor %}{% endfor %}{% endfor %}
|
|
{%- for family in instructions['sigs'] %}{% for scheme in family['schemes'] %}
|
|
<ClCompile Include="..\..\src\sig\{{ family['name'] }}\sig_{{ family['name'] }}_{{ scheme['scheme_c'] }}.c" />
|
|
{%- for file in scheme['sources'] %}
|
|
<ClCompile Include="..\..\src\sig\{{ family['name'] }}\pqclean_{{ scheme['pqclean_scheme'] }}_{{ scheme['implementation'] }}\{{ file }}" />{% endfor %}{% endfor %}{% endfor %}
|
|
|