2012-01-19 23:15:51 -07:00
|
|
|
PROJECT(mapexport)
|
|
|
|
|
2012-01-29 00:55:42 -07:00
|
|
|
INCLUDE_DIRECTORIES (
|
2012-01-20 12:21:29 -07:00
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}
|
2012-01-19 23:15:51 -07:00
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/
|
2012-01-29 00:55:42 -07:00
|
|
|
${dfhack_SOURCE_DIR}/library/depends/zlib/
|
|
|
|
)
|
|
|
|
|
|
|
|
LINK_DIRECTORIES(
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/zlib/
|
2012-01-19 23:15:51 -07:00
|
|
|
)
|
|
|
|
|
2012-01-20 12:21:29 -07:00
|
|
|
#The protobuf sources we generate will require these headers
|
2012-01-19 23:15:51 -07:00
|
|
|
SET(PROJECT_HDRS
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/stubs/once.h
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/stubs/common.h
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/io/coded_stream.h
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/wire_format_lite_inl.h
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/generated_message_util.h
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/repeated_field.h
|
|
|
|
${dfhack_SOURCE_DIR}/library/depends/protobuf/google/protobuf/extension_set.h
|
|
|
|
)
|
|
|
|
|
|
|
|
SET(PROJECT_SRCS
|
|
|
|
mapexport.cpp
|
|
|
|
)
|
|
|
|
|
2012-01-20 12:21:29 -07:00
|
|
|
SET(PROJECT_PROTOS
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/proto/Tile.proto
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/proto/Block.proto
|
|
|
|
${CMAKE_CURRENT_SOURCE_DIR}/proto/Map.proto
|
|
|
|
)
|
|
|
|
|
|
|
|
#Create new lists of what sources and headers protoc will output after we invoke it
|
|
|
|
STRING(REPLACE ".proto" ".pb.cc;" PROJECT_PROTO_SRCS ${PROJECT_PROTOS})
|
|
|
|
STRING(REPLACE ".proto" ".pb.h;" PROJECT_PROTO_HDRS ${PROJECT_PROTOS})
|
|
|
|
|
|
|
|
LIST(APPEND PROJECT_HDRS ${PROJECT_PROTO_HDRS})
|
|
|
|
LIST(APPEND PROJECT_SRCS ${PROJECT_PROTO_SRCS})
|
|
|
|
|
2012-01-19 23:15:51 -07:00
|
|
|
SET_SOURCE_FILES_PROPERTIES( ${PROJECT_HDRS} PROPERTIES HEADER_FILE_ONLY TRUE)
|
|
|
|
LIST(APPEND PROJECT_SRCS ${PROJECT_HDRS})
|
|
|
|
|
2012-01-20 12:21:29 -07:00
|
|
|
#Generate sources from our proto files and store them in the source tree
|
2012-01-19 23:15:51 -07:00
|
|
|
ADD_CUSTOM_COMMAND(
|
2012-01-20 12:21:29 -07:00
|
|
|
OUTPUT ${PROJECT_PROTO_SRCS} ${PROJECT_PROTO_HDRS}
|
2012-01-26 21:54:26 -07:00
|
|
|
COMMAND protoc-bin -I=${CMAKE_CURRENT_SOURCE_DIR}/proto/ --cpp_out=${CMAKE_CURRENT_SOURCE_DIR}/proto/ ${PROJECT_PROTOS}
|
2012-01-20 12:21:29 -07:00
|
|
|
DEPENDS protoc-bin ${PROJECT_PROTOS}
|
2012-01-19 23:15:51 -07:00
|
|
|
)
|
|
|
|
|
2012-01-29 00:55:42 -07:00
|
|
|
DFHACK_PLUGIN(mapexport ${PROJECT_SRCS} ${PROJECT_HDRS} LINK_LIBRARIES protobuf zlib)
|