gplugin/gplugin

a few tweaks
feature/gjs-cc
2016-08-23, Gary Kramlich
0737833a744d
Parents dee481b2b4ee
Children 365e3f1ea768
a few tweaks
--- a/gjs/CMakeLists.txt Tue Aug 23 12:08:22 2016 -0500
+++ b/gjs/CMakeLists.txt Tue Aug 23 12:27:20 2016 -0500
@@ -22,13 +22,17 @@
)
pkg_check_modules(GJS REQUIRED gjs-1.0>=1.32.0)
+
+ include_directories(${GJS_INCLUDE_DIRS})
+ link_directories(${GJS_LIBRARIES_DIRS})
+
add_library(gplugin-gjs MODULE
${GPLUGIN_GJS_SOURCES}
${GPLUGIN_GJS_HEADERS}
)
+ target_compile_features(gplugin-gjs PRIVATE cxx_deleted_functions)
set_target_properties(gplugin-gjs PROPERTIES PREFIX "")
- include_directories(${GJS_INCLUDE_DIRS})
target_link_libraries(gplugin-gjs
${GJS_LIBRARIES}
gplugin