From 4bae6afc9f43ae4d18ea7b45506dd7b048290588 Mon Sep 17 00:00:00 2001 From: thibeaz Date: Thu, 30 Jun 2011 01:54:32 +0000 Subject: [PATCH] in the EXECUTE_PROCESS command in the CmakeLists.txt file for the wxwidgets gui was missing the end bracket, this should fix it, next on the list is work on using ffmpeg as an external dependency and not need it as a requirement (hopefully), if it doesn't work, you can shoot me Squall git-svn-id: https://svn.code.sf.net/p/vbam/code/trunk@1028 a31d4220-a93d-0410-bf67-fe4944624d44 --- src/wx/CMakeLists.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/wx/CMakeLists.txt b/src/wx/CMakeLists.txt index 14cc5677..d2fbefd6 100644 --- a/src/wx/CMakeLists.txt +++ b/src/wx/CMakeLists.txt @@ -22,13 +22,13 @@ if(ENABLE_OPENAL) else(ENABLE_OPENAL) ADD_DEFINITIONS (-DNO_OAL) endif(ENABLE_OPENAL) - - -# adv is for wxAboutBox -# xml, html is for xrc -SET( wxWidgets_USE_LIBS xrc xml html adv gl net core base ) -FIND_PACKAGE ( wxWidgets REQUIRED ) -EXECUTE_PROCESS(COMMAND sh "${wxWidgets_CONFIG_EXECUTABLE}" --cxxflags + + +# adv is for wxAboutBox +# xml, html is for xrc +SET( wxWidgets_USE_LIBS xrc xml html adv gl net core base ) +FIND_PACKAGE ( wxWidgets REQUIRED ) +EXECUTE_PROCESS(COMMAND sh "${wxWidgets_CONFIG_EXECUTABLE}" --cxxflags) INCLUDE( ${wxWidgets_USE_FILE} ) FIND_PACKAGE ( Gettext REQUIRED ) FIND_PROGRAM(XGETTEXT xgettext)