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
This commit is contained in:
parent
f109539a64
commit
4bae6afc9f
|
@ -28,7 +28,7 @@ endif(ENABLE_OPENAL)
|
||||||
# xml, html is for xrc
|
# xml, html is for xrc
|
||||||
SET( wxWidgets_USE_LIBS xrc xml html adv gl net core base )
|
SET( wxWidgets_USE_LIBS xrc xml html adv gl net core base )
|
||||||
FIND_PACKAGE ( wxWidgets REQUIRED )
|
FIND_PACKAGE ( wxWidgets REQUIRED )
|
||||||
EXECUTE_PROCESS(COMMAND sh "${wxWidgets_CONFIG_EXECUTABLE}" --cxxflags
|
EXECUTE_PROCESS(COMMAND sh "${wxWidgets_CONFIG_EXECUTABLE}" --cxxflags)
|
||||||
INCLUDE( ${wxWidgets_USE_FILE} )
|
INCLUDE( ${wxWidgets_USE_FILE} )
|
||||||
FIND_PACKAGE ( Gettext REQUIRED )
|
FIND_PACKAGE ( Gettext REQUIRED )
|
||||||
FIND_PROGRAM(XGETTEXT xgettext)
|
FIND_PROGRAM(XGETTEXT xgettext)
|
||||||
|
|
Loading…
Reference in New Issue