From bc2577d33e956ec163d2846de448f0191359088e Mon Sep 17 00:00:00 2001 From: wowzaman12 Date: Sat, 28 Mar 2015 04:30:24 +0000 Subject: [PATCH] oops should be copying those files into source dir not binary dir git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1267 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/wx/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wx/CMakeLists.txt b/src/wx/CMakeLists.txt index d045f6ef..464e7f4f 100644 --- a/src/wx/CMakeLists.txt +++ b/src/wx/CMakeLists.txt @@ -68,8 +68,8 @@ include_directories(${CMAKE_CURRENT_BINARY_DIR}) include_directories(${CMAKE_CURRENT_SOURCE_DIR}) # Copy over needed icons -file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/icons/vbam.png DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) -file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/icons/wxvbam.xpm DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/icons/vbam.png DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}) +file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/icons/wxvbam.xpm DESTINATION ${CMAKE_CURRENT_SOURCE_DIR}) # wxrc does not support xrs files in -c output (> 10x compression) # so do it manually using slow but portable bin2c.cmake script