Browse Source

CPP: Fixing bug when building the project in paths containing a space.

pull/567/head
Philip Liard 15 years ago
committed by Mihaela Rosca
parent
commit
5d91592bb7
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      cpp/CMakeLists.txt

+ 1
- 1
cpp/CMakeLists.txt View File

@ -120,7 +120,7 @@ set (
)
add_custom_command (
COMMAND ${PROTOC_BIN} --cpp_out="${CMAKE_SOURCE_DIR}/src"
COMMAND ${PROTOC_BIN} --cpp_out=${CMAKE_SOURCE_DIR}/src
--proto_path=${RESOURCES_DIR} ${PROTOBUF_SOURCES}
OUTPUT ${PROTOBUF_OUTPUT}


Loading…
Cancel
Save