New: cmakeAll contenthive-129948hive-196917krhive-166405zzansteemhive-183959hive-180932photographyhive-150122hive-185836uncommonlabhive-183397lifehive-144064hive-188619bitcoinhive-101145krsuccesshive-139150hive-124908hive-103599hive-180301hive-109690hive-193186TrendingNewHotLikersmtl1979 (50)in cmake • 4 years agosteemCreated with Sketch.How to force cmake to link against static version of library...Sometimes it is necessary to force cmake project to link against static version of system library if available, it can be done using following code snippets, which are from cmake package for Ubuntu.…mtl1979 (50)in cmake • 4 years agosteemCreated with Sketch.How to add FindPackage() script for libraries not already supported by cmake.Sometimes a developer wants to make sure compilation of a program doesn't fail even if user hasn't installed all the dependencies... With cmake it is easy to add optional packages that will only be…dothebest0927 (25)in gcc • 6 years ago[CentOS7] How to cmake 3.8.2 build (Required minimum version) - 1How to install Cmake 3.8.2 build (Required minimum version) Step $ wget $ tar -zxvf cmake-3.6.1.tar.gz $ cd cmake-3.6.1 $ ./bootstrap (Required gcc Compiler) $ make $ make install $…copernix (25)in eos • 6 years agoCMake + EOSIOPurpose This tutorial describes how to use CMake (and CLion) to build smart contracts for the eosio blockchain. This work was motivated by the absence of build tools that can be used directly from…cho.dev (25)in eos • 7 years agoEOS Smart Contract - MAC테스트 환경 Mac version 10.13.4 OpenSSL version 2.2.7 MongoDB Cmake version 3.11.1 라이브러리 설치 #cmake $ brew install cmake $ brew update cmake #openssl $ brew install openssl $ export…deep-root (39)in kr • 7 years agoQt creator를 이용해서 CMake project setup하는 방법 (Ubuntu 환경)Qt의 공식 IDE인 (또는 Editor 인) Qt creator의 가장 기본적인 구성은 Qt project + qmake 이다. 하지만 C++을 지원하는 Qt creator는 CMakeLists project + cmake를 프로젝트 단위로 셋업해서 사용할 수 있다. 본 포스트에서는 Qt creator를 이용해서 cmake project를…alanzheng (55)in resolve • 7 years agoResolve CMake find path issueIf CMake report something NOTFOUND : Try to add set(CMAKE_PREFIX_PATH "/correct path") in CMakeLists.txt Or set CMAKE_PREFIX_PATH in cmake command line.