mirror of
https://github.com/guanzhi/GmSSL.git
synced 2026-05-07 00:46:17 +08:00
9 lines
211 B
CMake
9 lines
211 B
CMake
cmake_minimum_required(VERSION 3.0)
|
|
project(sm2demo)
|
|
|
|
include_directories(/usr/local/include)
|
|
link_directories(/usr/local/lib)
|
|
|
|
add_executable(sm2keyparse sm2keyparse.c)
|
|
target_link_libraries(sm2keyparse gmssl)
|