7 lines
76 B
CMake
7 lines
76 B
CMake
|
PROJECT (SHA2 CXX)
|
||
|
|
||
|
SET ( SRCS
|
||
|
sha2.c
|
||
|
)
|
||
|
ADD_LIBRARY ( sha2 STATIC sha2.c)
|