mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 16:57:16 +01:00
14 lines
426 B
CMake
14 lines
426 B
CMake
|
# Create the WhirlpoolLib library
|
||
|
add_library(WhirlpoolLib STATIC
|
||
|
include/ustd.h
|
||
|
include/whirlpool.h
|
||
|
byte_order.h byte_order.c
|
||
|
whirlpool.c.c
|
||
|
whirlpool_sbox.c
|
||
|
)
|
||
|
# Configure include folders
|
||
|
target_include_directories(WhirlpoolLib PRIVATE ${CMAKE_CURRENT_LIST_DIR})
|
||
|
target_include_directories(WhirlpoolLib PUBLIC ${CMAKE_CURRENT_LIST_DIR}/include)
|
||
|
# Configure build options
|
||
|
target_compile_definitions(WhirlpoolLib PRIVATE )
|