Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions CMake_valama-codecontextd.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ endif ()

message ("-- checking dependency LibVala")
set (found FALSE)
if (NOT found)
message ("-- checking option libvala-0.32")
set (cond_found TRUE)
pkg_check_modules (DEP_libvala-0.32 QUIET libvala-0.32)
if (NOT DEP_libvala-0.32_VERSION)
set (cond_found FALSE)
endif ()
if (cond_found)
set (found TRUE)
list(APPEND required_pkgs "libvala-0.32")
endif ()
endif ()
if (NOT found)
message ("-- checking option libvala-0.30")
set (cond_found TRUE)
Expand Down