17 lines
511 B
CMake
Executable File
17 lines
511 B
CMake
Executable File
message(STATUS "Building pip_cmg")
|
|
import_version(pip_cmg pip)
|
|
set_deploy_property(pip_cmg
|
|
LABEL "PIP code model generator"
|
|
FULLNAME "${_PIP_DOMAIN}.pip_cmg"
|
|
COMPANY "${_PIP_COMPANY}"
|
|
INFO "Platform-Independent Primitives")
|
|
make_rc(pip_cmg _RC)
|
|
add_executable(pip_cmg "main.cpp" ${_RC})
|
|
target_link_libraries(pip_cmg pip)
|
|
# apple_rpath_patch(pip_cmg)
|
|
if (DEFINED LIB)
|
|
install(TARGETS pip_cmg DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
|
|
else()
|
|
install(TARGETS pip_cmg DESTINATION bin)
|
|
endif()
|