commit 6da1cf79d90eb242e7da5318241d42279a3df3ba Author: Max Burke <max@urbanlogiq.com> Date: Sun Jan 19 14:47:28 2020 -0800 [rust] Add use declarations to Rust-generated bindings for imported FB definitions (#5645) * Bugfix for Rust generation of union fields named with language keywords
13 lines
357 B
CMake
13 lines
357 B
CMake
cmake_minimum_required(VERSION 2.8)
|
|
|
|
message(STATUS "Conan FlatBuffers Wrapper")
|
|
|
|
include(${CMAKE_BINARY_DIR}/conanbuildinfo.cmake)
|
|
conan_basic_setup()
|
|
|
|
if (WIN32 AND MSVC AND FLATBUFFERS_BUILD_SHAREDLIB)
|
|
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
|
|
endif(WIN32 AND MSVC AND FLATBUFFERS_BUILD_SHAREDLIB)
|
|
|
|
include(${CMAKE_SOURCE_DIR}/CMakeListsOriginal.txt)
|