Files
pip/utils/code_model_generator/CMakeLists.txt

9 lines
253 B
CMake
Executable File

message(STATUS "Building pip_cmg")
add_executable(pip_cmg "main.cpp")
target_link_libraries(pip_cmg pip)
if (DEFINED LIB)
install(TARGETS pip_cmg DESTINATION ${CMAKE_INSTALL_PREFIX}/bin)
else()
install(TARGETS pip_cmg DESTINATION bin)
endif()