Also exclude libprotoc when cross-compiling (unused)

develop
lethosor 2016-01-18 09:22:08 -05:00
parent c15cf5f415
commit 71ff6f875a
1 changed files with 7 additions and 7 deletions

@ -232,6 +232,7 @@ install(TARGETS protobuf-lite
LIBRARY DESTINATION ${DFHACK_LIBRARY_DESTINATION}
RUNTIME DESTINATION ${DFHACK_LIBRARY_DESTINATION})
IF(NOT CMAKE_CROSSCOMPILING)
# Protobuf compiler shared library
ADD_LIBRARY(protoc SHARED ${LIBPROTOC_SRCS} ${LIBPROTOC_HDRS})
@ -242,7 +243,6 @@ TARGET_LINK_LIBRARIES(protoc protobuf)
# Protobuf compiler executable
IF(NOT CMAKE_CROSSCOMPILING)
ADD_EXECUTABLE(protoc-bin google/protobuf/compiler/main.cc google/protobuf/compiler/command_line_interface.h google/protobuf/compiler/cpp/cpp_generator.h)
IDE_FOLDER(protoc-bin "Depends")