New: cmakeAll contenthive-129948hive-196917krhive-150122zzansteemhive-180932hive-188619hive-185836hive-183959hive-166405hive-144064photographyhive-183397uncommonlabhive-145157hive-101145hive-184714hive-103599hive-165987lifehive-139765hive-109690hive-154900hive-139150TrendingNewHotLikersmtl1979 (50)in cmake • 5 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 • 5 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 undefined • 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 • 7 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…alanzheng (55)in resolve • 8 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.