1. 18 Oct, 2017 6 commits
  2. 17 Oct, 2017 3 commits
  3. 16 Oct, 2017 2 commits
  4. 23 Jun, 2017 1 commit
  5. 15 May, 2016 1 commit
  6. 31 Dec, 2015 3 commits
  7. 30 Dec, 2015 15 commits
  8. 24 Dec, 2015 1 commit
  9. 23 Dec, 2015 4 commits
  10. 14 Oct, 2015 1 commit
    • Thomas Fischer's avatar
      Locating libconfig from CMake-based projects · 8aa02d68
      Thomas Fischer authored
      Configuration files for CMake are provided to simplify
      locating libconfig from within project that use CMake
      as their build system.
      Separate configuration files are provided for C and C++
      builds.
      
      In a CMakeLists.txt file, use the following commands to
      locate libconfig:
      
      - To locate the library, use either
          find_package(libconfig)
        or
          find_package(libconfig++)
      
      - The include directories are available as variables
          LIBCONFIG_INCLUDE_DIRS
        and
          LIBCONFIG++_INCLUDE_DIRS
        respectively, and can be used like this:
          include_directories(${LIBCONFIG++_INCLUDE_DIRS})
      
      - Link to libconfig using variables
          LIBCONFIG_LIBRARIES
        and
          LIBCONFIG++_LIBRARIES
        respectively, by writing:
          target_link_libraries(${PROJECT_NAME}
            ${LIBCONFIG++_LIBRARIES}
          )
      8aa02d68
  11. 23 Sep, 2015 1 commit
  12. 15 Aug, 2015 2 commits