You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
cmake_policy(SET CMP0015 NEW)
|
|
|
|
# this policy was introduced in cmake 3.0
|
|
|
|
# remove if, once 3.0 will be used on unix
|
|
|
|
if (${CMAKE_MAJOR_VERSION} GREATER 2)
|
|
|
|
# old policy do not use MACOSX_RPATH
|
|
|
|
cmake_policy(SET CMP0042 OLD)
|
|
|
|
endif()
|
|
|
|
set(CMAKE_AUTOMOC OFF)
|
|
|
|
|
|
|
|
set(EXECUTABLE secp256k1)
|
|
|
|
file(GLOB HEADERS "*.h")
|
|
|
|
|
|
|
|
add_library(${EXECUTABLE} ${EXECUTABLE}.c)
|
|
|
|
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DHAVE_CONFIG_H -g -O2 -W -std=c89 -pedantic -Wall -Wextra -Wcast-align -Wnested-externs -Wshadow -Wstrict-prototypes -Wno-unused-function -Wno-long-long -Wno-overlength-strings")
|
|
|
|
target_link_libraries(${EXECUTABLE} ${GMP_LIBRARIES})
|
|
|
|
|
|
|
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
|
|
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|