Home
last modified time | relevance | path

Searched full:cmake (Results 1 – 25 of 56) sorted by relevance

123

/thrift-3.4.0/compiler/cpp/
DREADME.md1 # Build Thrift IDL compiler using CMake
5 - [Build Thrift IDL compiler using CMake](#build-thrift-idl-compiler-using-cmake)
8 - [Build using CMake](#build-using-cmake)
18 … the Thrift IDL compiler in Windows without CMake](#building-the-thrift-idl-compiler-in-windows-wi…
29 - Install CMake
32 ### Build using CMake
35 - Use the following steps to build using cmake:
38 mkdir cmake-build && cd cmake-build
39 cmake ..
46 - Use the following steps to build using cmake:
[all …]
/thrift-3.4.0/compiler/cpp/tests/
DREADME.md1 # Build and run compiler tests using CMake
5 - [Build and run compiler tests using CMake](#build-and-run-compiler-tests-using-cmake)
10 - [Build and run test with CMake](#build-and-run-test-with-cmake)
13 …- [Generation of VS project with CMake, build and run on Windows](#generation-of-vs-project-with-c…
31 ``` cmake
44 ``` cmake
52 - Run **cmake** with arguments for your environment and compiler
58 - Install CMake - <https://cmake.org/download/>
61 ### Build and run test with CMake
66 mkdir cmake-vs && cd cmake-vs
[all …]
/thrift-3.4.0/build/cmake/
DREADME.md1 # Apache Thrift - CMake Build
12 As nice side benefit of CMake is the generation of development environment
29 To use CMake you first create an out-of-tree build directory, then use
30 CMake to generate a build framework, then build:
34 cmake /location/to/thrift
36 if you use a specific toolchain pass it to cmake, the same for options:
38 cmake -DCMAKE_TOOLCHAIN_FILE=../build/cmake/mingw32-toolchain.cmake ..
39 cmake -DCMAKE_C_COMPILER=clang-3.5 -DCMAKE_CXX_COMPILER=clang++-3.5 ..
40 cmake -DTHRIFT_COMPILER_HS=OFF ..
41 cmake -DWITH_ZLIB=ON ..
[all …]
DGenerateConfigModule.cmake27 configure_package_config_file("${CMAKE_CURRENT_SOURCE_DIR}/build/cmake/ThriftConfig.cmake.in"
28 "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfig.cmake"
36 write_basic_package_version_file("${CMAKE_CURRENT_BINARY_DIR}/ThriftConfigVersion.cmake"
41 install(FILES "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfig.cmake"
42 "${CMAKE_CURRENT_BINARY_DIR}/ThriftConfigVersion.cmake"
DREADME-MSYS2.md17cmake to make it easier to build the project on multiple platforms, however to build a fully funct…
30 mingw-w64-x86_64-boost mingw-w64-x86_64-cmake \
39 Use cmake to create a MinGW makefile, out of tree (assumes you are in the top level of the thrift s…
43 cmake -G"MinGW Makefiles" -DCMAKE_MAKE_PROGRAM=/mingw64/bin/mingw32-make \
53 cmake --build .
DBuildType.cmake21 # https://raw.githubusercontent.com/OpenChemistry/tomviz/master/cmake/BuildType.cmake
33 # Set the possible values of build type for cmake-gui
DDefineInstallationPaths.cmake29 set(CMAKE_INSTALL_DIR "lib/cmake" CACHE PATH "The subdirectory to install cmake config files (defau…
DDefineCMakeDefaults.cmake24 # since cmake 2.4.0
30 # since cmake 2.4.1
34 # since cmake 2.4.0
DThriftConfig.cmake.in32 include("${THRIFT_CMAKE_DIR}/thriftTargets.cmake")
38 include("${THRIFT_CMAKE_DIR}/thriftzTargets.cmake")
DThriftMacros.cmake41 FILE "${CMAKE_CURRENT_BINARY_DIR}/${name}/${name}Targets.cmake"
45 FILE "${name}Targets.cmake"
DCPackConfig.cmake25 # http://www.cmake.org/Wiki/CMake:CPackConfiguration
DDefineOptions.cmake38 # By default CMake checks if the required dependencies for a language are present
64 # FindZLIB.cmake does not normalize path so we need to do it ourselves.
126 # https://cmake.org/cmake/help/latest/variable/BUILD_SHARED_LIBS.html
/thrift-3.4.0/.github/workflows/
Dcmake.yml1 name: 'Build with CMake'
10 BUILD_DEPS: bison flex g++ libboost-all-dev libevent-dev libssl-dev make cmake
26 - name: Generate makefile using CMake
30 cmake .. -DBUILD_LIBRARIES=OFF
35 cmake --build .
/thrift-3.4.0/build/appveyor/
DMSYS-appveyor-full.bat20 :: Installs third party packages we need for a cmake build
39 SET CMAKE=/c/msys64/mingw64/bin/cmake.exe
50 mingw-w64-x86_64-cmake ^
62 :: Configure and build our software with cmake
87 …%BUILDDIR% && cd %BUILDDIR% && %CMAKE% %SRCDIR_MSYS% %CMAKEARGS% && %CMAKE% --build . --config %CO…
DCYGWIN-appveyor-full.bat20 :: Installs third party packages we need for a cmake build
68 %BASH% -lc "apt-cyg install unzip xz cmake make bison flex gcc-g++ libboost-devel libevent-devel op…
72 :: Configure and build our software with cmake
87 … -p %BUILDDIR% && cd %BUILDDIR% && cmake.exe %SRCDIR% %CMAKEARGS% && cmake --build . --config %CON…
DMINGW-appveyor-full.bat20 :: Installs third party packages we need for a cmake build
76 mingw-w64-%MINGWPLAT%-cmake ^
104 :: Configure and build our software with cmake
117 … -p %BUILDDIR% && cd %BUILDDIR% && cmake.exe %SRCDIR% %CMAKEARGS% && cmake --build . --config %CON…
DMSVC-appveyor-full.bat71 …ECHO [error] unable to determine the CMake generator and compiler to use from MSVC profile %PROFIL…
83 :: FindBoost needs forward slashes so cmake doesn't see something as an escaped character
147 :: Configure and build our software with cmake
168 cmake.exe "%SRCDIR%" ^
184 cmake.exe --build . --config "%CONFIGURATION%" || EXIT /B
186 cmake.exe --install . --config "%CONFIGURATION%" || EXIT /B
/thrift-3.4.0/
DCMakeLists.txt23 cmake_policy(SET CMP0048 NEW) # package version behavior added in cmake 3.0
26 cmake_policy(SET CMP0074 NEW) # find_package behavior added in cmake 3.12
38 set(CMAKE_MODULE_PATH "${CMAKE_MODULE_PATH}" "${CMAKE_CURRENT_SOURCE_DIR}/build/cmake")
50 # Add CMake targets for static code analysis
56 # Generate the ThriftConfig.cmake module
132 …_custom_target(uninstall "${CMAKE_COMMAND}" -P "${PROJECT_SOURCE_DIR}/build/cmake/uninstall.cmake")
D.travis.yml47 - SCRIPT="cmake.sh"
51 - BUILD_LIBS="CPP C_GLIB JAVA PYTHON TESTING TUTORIALS" # only meaningful for CMake builds
119 # TODO: Remove them once migrated to CMake
140 # ------------------------- phase: cmake ------------------------
143 - JOB="CMake"
148 - JOB="CMake"
/thrift-3.4.0/build/docker/msvc2017/
Dbuild-compiler.bat28 cmake^
38 cmake --build . --target thrift-compiler --config Release || EXIT /B
41 cmake --build . --target check || EXIT /B
44 cmake --install .
Dbuild.bat28 cmake^
39 cmake --build . --config Release || EXIT /B
42 cmake --build . --target check || EXIT /B
45 cmake --install .
DDockerfile33 # Install CMake
34 ADD https://github.com/Kitware/CMake/releases/download/v3.13.4/cmake-3.13.4-win64-x64.msi C:\TEMP\c…
35 RUN msiexec.exe /i C:\TEMP\cmake.msi /qn && `
36 SETX PATH "%PATH%;C:\Program Files\CMake\bin" && `
37 DEL C:\TEMP\cmake.msi
/thrift-3.4.0/compiler/cpp/tests/ocaml/
DREADME.md13 cmake -DCMAKE_PREFIX_PATH=/usr/local/opt/bison -DCMAKE_CXX_STANDARD=11 .
16 rm -rf gen-ocaml; cmake --build . && ctest --output-on-failure
/thrift-3.4.0/lib/java/
DREADME.md26 When using a CMake build from the source distribution on Linux the
35 the code in the expected local build tree and then uses CMake
38 Building Thrift with Gradle without CMake/Autoconf
158 The same applies to the CMake build, the value from the configure.ac file will
163 make MavenPublish -- This is for a CMake generated build
/thrift-3.4.0/zephyr/
Dmodule.yml3 cmake-ext: True

123