1. 14 11月, 2016 3 次提交
    • M
      CMake: Use standard variables for the version · 8a838b37
      Max Bruckner 提交于
      8a838b37
    • M
      Buildsystem: Fix paths · f9ce9302
      Max Bruckner 提交于
      Fix library and include paths in pkg-config, CMakeLists.txt and the
      CMake config files.
      f9ce9302
    • M
      Added rudimentary package configuration files. · 251e5a5e
      Markus Blatt 提交于
      These files will allow cmake based projects to find the
      library using find_package(cJSON). If successful, they can
      use CJSON_LIBRARIES and CJSON_INCLUDE_DIRS.
      
      Other build systems can use a similar approach to pkg-config:
      cmake --find-package -DNAME=cJSON -DCOMPILER_ID=GNU -DLANGUAGE=C  -DCMAKE_PREFIX_PATH=<path-to-non-sytem-installation-path> -DMODE=LINK
      
      or with MODE COMPILE or EXISTS.
      251e5a5e