diff options
| author | Drew DeVault <sir@cmpwn.com> | 2015-08-26 08:32:27 -0400 |
|---|---|---|
| committer | Drew DeVault <sir@cmpwn.com> | 2015-08-26 08:32:27 -0400 |
| commit | 93482312f9ce89075ea9d5e314b5217622894e92 (patch) | |
| tree | ec34c26914c4dcfda6605c49c93ef40c3e3b830f /CMakeLists.txt | |
| parent | adcf89cfe49d2feaaea74a55b9b82071254f3987 (diff) | |
Add dependency on PCRE
Perl-compatible regular expression library
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index b0a64053..7e400cd2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -9,19 +9,13 @@ set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMake) find_package(XKBCommon REQUIRED) find_package(WLC REQUIRED) find_package(A2X REQUIRED) - -if (UNIX) - find_library(DL_LIBRARY dl) - mark_as_advanced(DL_LIBRARY) - if (NOT DL_LIBRARY) - message(FATAL_ERROR "libdl is needed on unix systems") - endif () -endif (UNIX) +find_package(PCRE REQUIRED) FILE(GLOB sources ${PROJECT_SOURCE_DIR}/sway/*.c) include_directories( ${WLC_INCLUDE_DIRS} + ${PCRE_INCLUDE_DIRS} include/ ) @@ -32,7 +26,7 @@ add_executable(sway target_link_libraries(sway ${WLC_LIBRARIES} ${XKBCOMMON_LIBRARIES} - ${DL_LIBRARY} + ${PCRE_LIBRARIES} ) INSTALL( |
