git-svn-id: svn://db.shs.com.ru/pip@557 12ceb7fc-bf1f-11e4-8940-5bc7170c53b5

This commit is contained in:
2017-11-20 19:53:28 +00:00
parent a3d9dce7c5
commit fde7d7bc80
9 changed files with 240 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
message(STATUS "Building pip_rc")
file(GLOB CPPS "*.cpp")
file(GLOB HDRS "*.h")
add_executable(pip_rc ${CPPS} ${HDRS})
set (PIRC_LIBS pip)
target_link_libraries(pip_rc ${PIRC_LIBS})
if (DEFINED LIB)
install(TARGETS pip_rc DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
endif ()