mirror of https://github.com/AxioDL/metaforce.git
19 lines
1.1 KiB
CMake
19 lines
1.1 KiB
CMake
include_directories(${LIBPNG_INCLUDE_DIR})
|
|
add_executable(mkwmicon mkwmicon.c)
|
|
target_link_libraries(mkwmicon ${PNG_LIB} ${ZLIB_LIBRARIES})
|
|
|
|
macro(declare_wmicon_target)
|
|
add_custom_command(OUTPUT ${CMAKE_BINARY_DIR}/Editor/platforms/freedesktop/mainicon_netwm.bin
|
|
COMMAND $<TARGET_FILE:mkwmicon>
|
|
ARGS ${CMAKE_BINARY_DIR}/Editor/platforms/freedesktop/mainicon_netwm.bin
|
|
DEPENDS
|
|
${CMAKE_SOURCE_DIR}/Editor/platforms/freedesktop/128x128/apps/urde.png
|
|
${CMAKE_SOURCE_DIR}/Editor/platforms/freedesktop/64x64/apps/urde.png
|
|
${CMAKE_SOURCE_DIR}/Editor/platforms/freedesktop/48x48/apps/urde.png
|
|
${CMAKE_SOURCE_DIR}/Editor/platforms/freedesktop/32x32/apps/urde.png
|
|
${CMAKE_SOURCE_DIR}/Editor/platforms/freedesktop/16x16/apps/urde.png
|
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}/Editor/platforms/freedesktop
|
|
COMMENT "Generating mainicon_netwm.bin")
|
|
bintoc(mainicon_netwm.c ${CMAKE_BINARY_DIR}/Editor/platforms/freedesktop/mainicon_netwm.bin MAINICON_NETWM)
|
|
endmacro()
|