From 6a503f3db01899aa80765243b5d51673823895e2 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 11 Jan 2016 11:22:14 -0800 Subject: [PATCH] remove icon as source to interface executable --- interface/CMakeLists.txt | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/interface/CMakeLists.txt b/interface/CMakeLists.txt index bc459c0e7e..33b7777042 100644 --- a/interface/CMakeLists.txt +++ b/interface/CMakeLists.txt @@ -105,9 +105,7 @@ elseif(WIN32) configure_file("${HF_CMAKE_DIR}/templates/Icon.rc.in" ${CONFIGURE_ICON_RC_OUTPUT}) # add an executable that also has the icon itself and the configured rc file as resources - add_executable(${TARGET_NAME} WIN32 - ${INTERFACE_SRCS} ${QM} ${CONFIGURE_ICON_RC_OUTPUT} "${CMAKE_CURRENT_SOURCE_DIR}/icon/${INTERFACE_ICON_FILENAME}" - ) + add_executable(${TARGET_NAME} WIN32 ${INTERFACE_SRCS} ${QM} ${CONFIGURE_ICON_RC_OUTPUT}) else() add_executable(${TARGET_NAME} ${INTERFACE_SRCS} ${QM}) endif()