summaryrefslogtreecommitdiff
path: root/libproxy/cmake/modules/config_sysconfig.cmk
blob: 10e8c5c25834dc9d1788caa29d6ddecd82bae6f7 (plain)
1
2
3
4
5
6
7
8
if (NOT WIN32 AND NOT APPLE)
  option(WITH_SYSCONFIG "Build sysconfig module for /etc/sysconfig" ON)
  if(WITH_SYSCONFIG)
    if (EXISTS "/etc/sysconfig" AND IS_DIRECTORY "/etc/sysconfig")
      set(SYSCONFIG_FOUND 1)
    endif()
  endif()
endif()