GResource rules added.

Este commit está contenido en:
Kolan Sh 2015-11-25 11:37:22 +03:00
padre 53f0f093c4
commit d54f2ba119
Se han modificado 1 ficheros con 10 adiciones y 0 borrados

10
GResourceCommonRules.cmake Archivo normal
Ver fichero

@ -0,0 +1,10 @@
SET (REL_INSTALL_DIR "share/${PROJECT_LOWERCASE_NAME}-${MAJOR}")
SET (ABS_INSTALL_DIR "${CMAKE_BINARY_DIR}/${REL_INSTALL_DIR}")
FILE (MAKE_DIRECTORY "${ABS_INSTALL_DIR}")
EXECUTE_PROCESS (COMMAND glib-compile-resources "--target=${ABS_INSTALL_DIR}/${PROJECT_LOWERCASE_NAME}.gresource"
"--sourcedir=${CMAKE_CURRENT_SOURCE_DIR}"
"--generate"
"--c-name=${PROJECT_LOWERCASE_NAME}-${MAJOR}"
"${CMAKE_CURRENT_SOURCE_DIR}/${PROJECT_LOWERCASE_NAME}.gresource.xml"
)
INSTALL (FILES "${ABS_INSTALL_DIR}/${PROJECT_LOWERCASE_NAME}.gresource" DESTINATION "${REL_INSTALL_DIR}")