d619076bc8d25409e5927f5347f9a3aada610d70
[vpp.git] / src / plugins / crypto_ia32 / CMakeLists.txt
1 # Copyright (c) 2018 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 if(NOT CMAKE_SYSTEM_PROCESSOR MATCHES "amd64.*|x86_64.*|AMD64.*")
15   return()
16 endif()
17
18 add_vpp_plugin(crypto_ia32 SOURCES main.c)
19
20 list(APPEND VARIANTS "sse42\;-march=silvermont")
21 list(APPEND VARIANTS "avx2\;-march=core-avx2")
22 if(compiler_flag_march_skylake_avx512)
23   list(APPEND VARIANTS "avx512\;-march=skylake-avx512")
24 endif()
25
26 foreach(VARIANT ${VARIANTS})
27   list(GET VARIANT 0 v)
28   list(GET VARIANT 1 f)
29   set(l crypto_ia32_${v})
30   add_library(${l} OBJECT aes_cbc.c aes_gcm.c)
31   set_target_properties(${l} PROPERTIES POSITION_INDEPENDENT_CODE ON)
32   target_compile_options(${l} PUBLIC ${f} -Wall -fno-common)
33   target_sources(crypto_ia32_plugin PRIVATE $<TARGET_OBJECTS:${l}>)
34 endforeach()