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.
19 lines
444 B
19 lines
444 B
10 years ago
|
cmake_policy(SET CMP0015 NEW)
|
||
|
set(CMAKE_AUTOMOC OFF)
|
||
|
|
||
|
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSTATICLIB")
|
||
|
|
||
|
aux_source_directory(. SRC_LIST)
|
||
|
|
||
|
include_directories(BEFORE ..)
|
||
|
|
||
|
set(EXECUTABLE scrypt)
|
||
|
|
||
|
file(GLOB HEADERS "*.h")
|
||
|
|
||
|
add_library(${EXECUTABLE} ${SRC_LIST} ${HEADERS})
|
||
|
|
||
|
install( TARGETS ${EXECUTABLE} RUNTIME DESTINATION bin ARCHIVE DESTINATION lib LIBRARY DESTINATION lib )
|
||
|
install( FILES ${HEADERS} DESTINATION include/${EXECUTABLE} )
|
||
|
|