9 lines
263 B
CMake
9 lines
263 B
CMake
message(STATUS "Building picrypt")
|
|
add_executable(picrypt "main.cpp")
|
|
target_link_libraries(picrypt pip pip_crypt)
|
|
if (DEFINED LIB)
|
|
install(TARGETS picrypt DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
else()
|
|
install(TARGETS picrypt DESTINATION bin)
|
|
endif()
|