All Projects → jesperes → Protobuf Cmake

jesperes / Protobuf Cmake

Licence: other
CMake build support for Google Protobufs

Labels

Projects that are alternatives of or similar to Protobuf Cmake

Gr Cbmc
Cumulant-Based Modulation Classification with GNU Radio
Stars: ✭ 13 (-59.37%)
Mutual labels:  cmake
Osvr Openhmd
OSVR plugin providing Oculus Rift DK1 & DK2 orientation tracking via OpenHMD
Stars: ✭ 21 (-34.37%)
Mutual labels:  cmake
Cmake min version
Determine the minimal requirement CMake version of a project
Stars: ✭ 30 (-6.25%)
Mutual labels:  cmake
Cpp Dependencies
download, compile && prepare cpp-ethereum dependencies for windows
Stars: ✭ 14 (-56.25%)
Mutual labels:  cmake
Tribits
TriBITS: Tribal Build, Integrate, and Test System,
Stars: ✭ 20 (-37.5%)
Mutual labels:  cmake
Max Api
Low-level C-language application programming interface for Max
Stars: ✭ 28 (-12.5%)
Mutual labels:  cmake
Keygen
KeyGen is a generator for keys and passwords.
Stars: ✭ 11 (-65.62%)
Mutual labels:  cmake
Jupedsim
Simulating pedestrians with state of the art models.
Stars: ✭ 31 (-3.12%)
Mutual labels:  cmake
Mc ruler
Seamless llvm-mca CMake integration
Stars: ✭ 21 (-34.37%)
Mutual labels:  cmake
Moderncppchallengestudy
2018년 하반기에 진행하는 모던 C++ 문제 풀이 스터디 관련 자료입니다.
Stars: ✭ 29 (-9.37%)
Mutual labels:  cmake
Aerial lidar
Stars: ✭ 14 (-56.25%)
Mutual labels:  cmake
Cht.exe
cht.sh libcurl client for windows XP+ with changed colorization
Stars: ✭ 15 (-53.12%)
Mutual labels:  cmake
Harfbuzz Icu Freetype
Harfbuzz with a CMake build configuration using Freetype2, UCDN and ICU
Stars: ✭ 28 (-12.5%)
Mutual labels:  cmake
Matrix Creator Pocketsphinx
Examples using MATRIX Devices and PhocketSphinx.
Stars: ✭ 14 (-56.25%)
Mutual labels:  cmake
Ida Cmake
IDA plugin CMake build-script
Stars: ✭ 30 (-6.25%)
Mutual labels:  cmake
Ros Academy For Beginners
中国大学MOOC《机器人操作系统入门》代码示例 ROS tutorial
Stars: ✭ 861 (+2590.63%)
Mutual labels:  cmake
Cherish
🏰 Sketch- and image-based system for 3D representation and documentation of cultural heritage sites
Stars: ✭ 27 (-15.62%)
Mutual labels:  cmake
Cmake
CMake scripts used in Zeek
Stars: ✭ 31 (-3.12%)
Mutual labels:  cmake
Hello cmake
Stars: ✭ 31 (-3.12%)
Mutual labels:  cmake
Aws Robomaker Racetrack World
A mini racetrack world for developing and testing robots with AWS RoboMaker and Gazebo simulations.
Stars: ✭ 28 (-12.5%)
Mutual labels:  cmake

protobuf-cmake: CMake build files for Protocol Buffers

Written by Jesper Eskilson ([email protected]) with contributions from several other people.

Requirements

  • CMake version 2.6
  • Protobuf version 2.5.0 or 2.6.1

Download links

http://www.cmake.org/cmake/resources/software.html http://protobuf.googlecode.com/files/protobuf-2.5.0.tar.gz

Instructions

The CMake variable PROTOBUF_ROOT needs to be set to the location of the Protocol Buffers sources. When running CMake on the command line, this can be set like this:

$ cd build $ cmake /path/to/protobuf-cmake -DPROTOBUF_ROOT=/path/to/protobufs

If you specify -DDOWNLOAD_PROTOBUF=1, the script will automatically download protobuf.

For windows users with Visual Studio, an example build script can be like this:

::put this "build-vs2013.bat" file under root folder of this repo
@echo off
set build_dir=build-vs2013
if not exist %build_dir% md %build_dir%
cd %build_dir%
cmake .. ^
    -G "Visual Studio 12 2013" ^
    -DCMAKE_INSTALL_PREFIX=%cd%/install ^
    -DPROTOBUF_ROOT=D:/lib/protobuf-2.6.1 ^
    -DCMAKE_BUILD_TYPE=Debug

cmake --build . --config Debug
cmake --build . --target install --config Debug

cmake --build . --config Release
cmake --build . --target install --config Release

cd ..
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].