Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removing items from CMakeFile #136

Merged
merged 1 commit into from
Jul 23, 2017
Merged
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
20 changes: 2 additions & 18 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,30 +30,16 @@ add_definitions(-w)

find_package(PkgConfig)

# either of webkitpackages would do
pkg_search_module(WEBKIT REQUIRED
webkit2gtk-4.0
webkit2gtk-3.0
)

pkg_check_modules(DEPS REQUIRED
granite>=0.3
gee-0.8
gtksourceview-3.0>=3.10
gthread-2.0
gtk+-3.0>=3.9.10
webkit2gtk-4.0
sqlite3>=3.5.9
)

set (PKG_DEPS
granite>=0.3
gee-0.8
gtksourceview-3.0
gtk+-3.0
webkit2gtk-4.0
sqlite3>=3.5.9
discount
)

set (VALA_DEPS
granite
gee-0.8
Expand All @@ -64,8 +50,6 @@ set (VALA_DEPS
discount
)

pkg_check_modules (DEPS REQUIRED ${PKG_DEPS})

add_definitions(${DEPS_CFLAGS})
add_definitions(${WEBKIT_CFLAGS})

Expand Down