tdev
28-12-2008 18:04:13
i was just wondering if someone is working on a cmake buildsystem for myGUI?
tdev
28-12-2008 18:04:13
Altren
28-12-2008 20:39:48
tdev
29-12-2008 15:24:41
At least no one from developers and never heard that someone planning to do it.
Automake and code::block project files is not enough?
tdev
02-01-2009 18:21:37
FILE(GLOB_RECURSE mygui_src src/*.cpp)
include_directories (include)
include_directories (${Project_SOURCE_DIR}/ogrenew/OgreMain/include) #OgreMain
include_directories (${Project_SOURCE_DIR}/ogrenew/Dependencies/include) # for freetype
include_directories (${Project_SOURCE_DIR}/OIS-HEAD/ois/includes) #ois
# add definitions
add_definitions("-D_USRDLL -DMYGUI_BUILD")
# the final lib
add_library(mygui SHARED ${mygui_src})
add_dependencies(mygui OgreMain)
target_link_libraries(mygui OgreMain)
# install target
install(TARGETS mygui DESTINATION ${BIN_DIR})