Error during Build: _wfindnext64i32 not declared

For help with general CEGUI usage:
- Questions about the usage of CEGUI and its features, if not explained in the documentation.
- Problems with the CMAKE configuration or problems occuring during the build process/compilation.
- Errors or unexpected behaviour.

Moderators: CEGUI MVP, CEGUI Team

Jacob843
Just popping in
Just popping in
Posts: 5
Joined: Fri Mar 06, 2015 20:21

Error during Build: _wfindnext64i32 not declared

Postby Jacob843 » Fri Mar 06, 2015 20:39

Howdy! I am trying to build CEGUI 8.4 in Windows 7 using Mingw (with MSYS). I am using Ogre3d as my renderer.

Just a quick heads up, this may or may not be a Mingw issue. I spent a good 30 minutes trying to find someone with a similar issue, but no dice. However, since I am only getting this issue while compiling CEGUI, I am posting here first.

For the sake of accuracy, I am going to tell you exactly what I did that lead up to my error. I started by downloading and building the CEGUI dependencies. I used cmake to configure and generate and the "make" command in the command line and it built fine. I moved the created "dependencies" folder to the root of my CEGUI folder. After that, I used cmake on the actual CEGUI, and it complained about Boost. I did not use Boost to build Ogre, mostly because it was freaking out. However, I grabbed a copy of Boost 1.57 and built a complete build with GCC as my compiler. I then threw my Boost directory into cmake (Boost_DIR), which silenced the errors. Note that it still says it couldn't find Boost. Here is the full cmake output:

Code: Select all

Could NOT find MINIZIP (missing:  MINIZIP_LIB MINIZIP_H_PATH)
Could NOT find PkgConfig (missing:  PKG_CONFIG_EXECUTABLE)
Could NOT find FRIBIDI (missing:  FRIBIDI_FOUND_ALL_LIBS FRIBIDI_INCLUDE_DIR)
Could NOT find DIRECTXSDK (missing:  DIRECTXSDK_LIB_PATH DIRECTXSDK_H_PATH DIRECTXSDK_MAX_D3D)
Could NOT find D3DX11EFFECTS (missing:  D3DX11EFFECTS_LIB D3DX11EFFECTS_H_PATH)
Could NOT find IRRLICHT (missing:  IRRLICHT_LIB IRRLICHT_H_PATH)
Boost version: 1.57.0
Found the following Boost libraries:
  thread
  system
Could NOT find DIRECTFB (missing:  DIRECTFB_LIB DIRECTFB_H_PATH)
Could NOT find OPENGLES (missing:  OPENGLES_LIB OPENGLES_H_PATH)
Could NOT find XERCESC (missing:  XERCESC_LIB XERCESC_H_PATH)
Could NOT find LibXml2 (missing:  LIBXML2_INCLUDE_DIR)
Could NOT find TINYXML (missing:  TINYXML_LIB TINYXML_H_PATH)
Could NOT find RAPIDXML (missing:  RAPIDXML_H_PATH)
Could NOT find IL (missing:  IL_H_PATH)
Could NOT find ILU (missing:  ILU_LIB)
Could NOT find FREEIMAGE (missing:  FREEIMAGE_LIB FREEIMAGE_H_PATH)
Could NOT find CORONA (missing:  CORONA_LIB CORONA_H_PATH)
Could NOT find PVRTOOLS (missing:  PVRTOOLS_LIB PVRTOOLS_H_PATH)
Could NOT find PythonLibs (missing:  PYTHON_LIBRARIES PYTHON_INCLUDE_DIRS)
Could NOT find Boost
Some or all of the gtk libraries were not found. (missing:  GTK2_GTK_LIBRARY GTK2_GTK_INCLUDE_DIR GTK2_GDK_INCLUDE_DIR GTK2_GDKCONFIG_INCLUDE_DIR GTK2_GDK_LIBRARY GTK2_GLIB_INCLUDE_DIR GTK2_GLIBCONFIG_INCLUDE_DIR GTK2_GLIB_LIBRARY)
Configuring done
Generating done


I was then able to generate something that I could build off of. I used "make install" and in a few minutes, an error was thrown:

Code: Select all

E:\Users\Jacob\Desktop\Uncategorized\Projects\Athelia\git\lib\CEGUI\build>make install
Scanning dependencies of target CEGUIBase-0
[  0%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Affector.cpp.obj
[  0%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Animation.cpp.obj
[  1%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/AnimationInstance.cpp.obj
[  1%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/AnimationManager.cpp.obj
[  2%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Animation_xmlHandler.cpp.obj
[  2%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Base.cpp.obj
[  3%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BasicImage.cpp.obj
[  3%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BasicRenderedStringParser.cpp.obj
[  4%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BidiVisualMapping.cpp.obj
[  4%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BoundSlot.cpp.obj
[  4%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/CentredRenderedString.cpp.obj
[  5%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/ChainedXMLHandler.cpp.obj
[  5%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Clipboard.cpp.obj
[  6%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Colour.cpp.obj
[  6%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/ColourRect.cpp.obj
[  7%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/CompositeResourceProvider.cpp.obj
[  7%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Config_xmlHandler.cpp.obj
[  8%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/CoordConverter.cpp.obj
[  8%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DataContainer.cpp.obj
[  9%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultLogger.cpp.obj
[  9%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultRenderedStringParser.cpp.obj
[  9%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultResourceProvider.cpp.obj
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp: In member function 'virtual size_t CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const CEGUI
::String&, const CEGUI::String&)':
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp:177:25: error: aggregate 'CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const CEGUI::String&,
 const CEGUI::String&)::_wfinddata64i32_t fd' has incomplete type and cannot be defined
     struct _wfinddata_t fd;
                         ^
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp:180:50: error: '_wfindfirst64i32' was not declared in this scope
             dir_name + file_pattern).c_str(), &fd)) != -1)
                                                  ^
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp:190:33: error: '_wfindnext64i32' was not declared in this scope
         while (_wfindnext(f, &fd) == 0);
                                 ^
make[2]: *** [cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultResourceProvider.cpp.obj] Error 1
make[1]: *** [cegui/src/CMakeFiles/CEGUIBase-0.dir/all] Error 2
make: *** [all] Error 2

E:\Users\Jacob\Desktop\Uncategorized\Projects\Athelia\git\lib\CEGUI\build>


Additionally, here is my Cmake Cache:

Code: Select all

# This is the CMakeCache file.
# For build in directory: e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/build
# It was generated by CMake: E:/Program Files (x86)/CMake 2.8/bin/cmake.exe
# You can edit this file to change values found and used by cmake.
# If you do not want to change any of the values, simply exit the editor.
# If you do want to change a value, simply edit, save, and exit the editor.
# The syntax for the file is as follows:
# KEY:TYPE=VALUE
# KEY is the name of a variable in the cache.
# TYPE is a hint to GUIs for the type of VALUE, DO NOT EDIT TYPE!.
# VALUE is the current value for the KEY.

########################
# EXTERNAL cache entries
########################

//The directory containing a CMake configuration file for Boost.
Boost_DIR:PATH=Boost_DIR-NOTFOUND

//Path to a file.
Boost_INCLUDE_DIR:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0

//Boost library directory
Boost_LIBRARY_DIR:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib

//Boost python library (debug)
Boost_PYTHON_LIBRARY_DEBUG:FILEPATH=Boost_PYTHON_LIBRARY_DEBUG-NOTFOUND

//Boost python library (release)
Boost_PYTHON_LIBRARY_RELEASE:FILEPATH=Boost_PYTHON_LIBRARY_RELEASE-NOTFOUND

//Boost system library (debug)
Boost_SYSTEM_LIBRARY_DEBUG:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_system-mgw48-mt-d-1_57.dll

//Boost system library (release)
Boost_SYSTEM_LIBRARY_RELEASE:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_system-mgw48-mt-1_57.dll

//Boost thread library (debug)
Boost_THREAD_LIBRARY_DEBUG:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_thread-mgw48-mt-d-1_57.dll

//Boost thread library (release)
Boost_THREAD_LIBRARY_RELEASE:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_thread-mgw48-mt-1_57.dll

//Boost unit_test_framework library (debug)
Boost_UNIT_TEST_FRAMEWORK_LIBRARY_DEBUG:FILEPATH=Boost_UNIT_TEST_FRAMEWORK_LIBRARY_DEBUG-NOTFOUND

//Boost unit_test_framework library (release)
Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE:FILEPATH=Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE-NOTFOUND

//Dependencies for the target
CEGUIBase-0_LIB_DEPENDS:STATIC=general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libfreetype.dll.a;general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libpcre.dll.a;

//Dependencies for the target
CEGUICommonDialogs-0_LIB_DEPENDS:STATIC=general;CEGUIBase-0;

//Dependencies for the target
CEGUICoreWindowRendererSet_LIB_DEPENDS:STATIC=general;CEGUIBase-0;

//Dependencies for the target
CEGUIExpatParser_LIB_DEPENDS:STATIC=general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libexpat.dll.a;general;CEGUIBase-0;

//Dependencies for the target
CEGUILuaScriptModule-0_LIB_DEPENDS:STATIC=general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libtoluapp.dll.a;general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/liblua.dll.a;general;CEGUIBase-0;

//Dependencies for the target
CEGUIOgreRenderer-0_LIB_DEPENDS:STATIC=optimized;E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/lib/Release/OgreMain.lib;optimized;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_thread-mgw48-mt-1_57.dll;optimized;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_system-mgw48-mt-1_57.dll;debug;E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/lib/Debug/OgreMain_d.lib;debug;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_thread-mgw48-mt-d-1_57.dll;debug;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib/libboost_system-mgw48-mt-d-1_57.dll;general;CEGUIBase-0;

//Dependencies for the target
CEGUIOpenGLRenderer-0_LIB_DEPENDS:STATIC=general;glu32;general;opengl32;general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libglew.dll.a;general;CEGUIBase-0;

//Dependencies for the target
CEGUISILLYImageCodec_LIB_DEPENDS:STATIC=general;E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libSILLY.dll.a;general;CEGUIBase-0;

//Specifies whether to build the Corona based ImageCodec module
CEGUI_BUILD_IMAGECODEC_CORONA:BOOL=OFF

//Specifies whether to build the DevIL based ImageCodec module
CEGUI_BUILD_IMAGECODEC_DEVIL:BOOL=OFF

//Specifies whether to build the FreeImage based ImageCodec module
CEGUI_BUILD_IMAGECODEC_FREEIMAGE:BOOL=OFF

//Specifies whether to build the PVR only ImageCodec module
CEGUI_BUILD_IMAGECODEC_PVR:BOOL=OFF

//Specifies whether to build the SILLY based ImageCodec module
CEGUI_BUILD_IMAGECODEC_SILLY:BOOL=ON

//Specifies whether to build the STB based ImageCodec module
CEGUI_BUILD_IMAGECODEC_STB:BOOL=OFF

//Specifies whether to build the based TGA only ImageCodec module
CEGUI_BUILD_IMAGECODEC_TGA:BOOL=OFF

//Specifies whether to build the custom tolua binding generator
// 'toluappcegui'
CEGUI_BUILD_LUA_GENERATOR:BOOL=ON

//Specifies whether to build the Lua based script module
CEGUI_BUILD_LUA_MODULE:BOOL=ON

//Specifies whether to build the Python extension module(s)
CEGUI_BUILD_PYTHON_MODULES:BOOL=OFF

//Specifies whether to build the Direct3D 10 renderer module
CEGUI_BUILD_RENDERER_DIRECT3D10:BOOL=OFF

//Specifies whether to build the Direct3D 11 renderer module
CEGUI_BUILD_RENDERER_DIRECT3D11:BOOL=OFF

//Specifies whether to build the Direct3D 9 renderer module
CEGUI_BUILD_RENDERER_DIRECT3D9:BOOL=OFF

//Specifies whether to build the DirectFB renderer module (not
// supported!)
CEGUI_BUILD_RENDERER_DIRECTFB:BOOL=OFF

//Specifies whether to build the Irrlicht renderer module
CEGUI_BUILD_RENDERER_IRRLICHT:BOOL=OFF

//Specifies whether to build the null renderer module
CEGUI_BUILD_RENDERER_NULL:BOOL=OFF

//Specifies whether to build the Ogre renderer module
CEGUI_BUILD_RENDERER_OGRE:BOOL=ON

//Specifies whether to build the OpenGL renderer module
CEGUI_BUILD_RENDERER_OPENGL:BOOL=ON

//Specifies whether to build the OpenGL 3+ (core profile) renderer
// module
CEGUI_BUILD_RENDERER_OPENGL3:BOOL=ON

//Specifies whether to build the OpenGLES renderer module
CEGUI_BUILD_RENDERER_OPENGLES:BOOL=OFF

//For WIN32 and APPLE where the dependency pack is used, prefer
// the static
//\ndependency libs over the shared/dynamic ones.  NOTE: On Windows
// you also need to
//\nbe mindful of which C/C++ runtime setting has been used to compile
// the various
//\ncomponents - they must all match or you will get crashes, heap
// corruption and/or
//\nother issues.
CEGUI_BUILD_SHARED_LIBS_WITH_STATIC_DEPENDENCIES:BOOL=OFF

//Specifies whether the static configs will be built.  (NB: Shared
// configs are always built)
CEGUI_BUILD_STATIC_CONFIGURATION:BOOL=OFF

//For static CEGUI builds, specifies whether to include the getWindoFactoryModule
// method.  When false, the developer must provide a custom implementation
// of the method
CEGUI_BUILD_STATIC_FACTORY_MODULE:BOOL=OFF

//String holding a suffix appended to the name of output binaries
// (under CMake build, only used for debug).
CEGUI_BUILD_SUFFIX:STRING=_d

//Specifies whether to build the Expat based XMLParser module
CEGUI_BUILD_XMLPARSER_EXPAT:BOOL=ON

//Specifies whether to build the libxml2 based XMLParser module
CEGUI_BUILD_XMLPARSER_LIBXML2:BOOL=OFF

//Specifies whether to build the RapidXML based XMLParser module
CEGUI_BUILD_XMLPARSER_RAPIDXML:BOOL=OFF

//Specifies whether to build the TinyXML based XMLParser module
CEGUI_BUILD_XMLPARSER_TINYXML:BOOL=OFF

//Specifies whether to build the Xerces-C++ based XMLParser module
CEGUI_BUILD_XMLPARSER_XERCES:BOOL=OFF

//If checked, CEGUI can use custom allocation. (for experienced
// developers only!)
CEGUI_CUSTOM_ALLOCATORS:BOOL=OFF

//Which include file contains memory allocators and allocation
// configuration. (only used if CEGUI_CUSTOM_ALLOCATORS is checked)
//\nWe have bundled 2 allocators, mostly for demonstrational purposes.
//\nCEGUI/MemoryStdAllocator.h contains malloc allocator, use it
// as a starting point for your own allocators
//\nCEGUI/MemoryOgreAllocator.h delegates allocation to Ogre, which
// may be useful to Ogre users (you will have to manually change
// linking options of CEGUIBase!)
CEGUI_CUSTOM_ALLOCATORS_INCLUDE:STRING=CEGUI/MemoryStdAllocator.h

//Specifies whether to build the DefaultLogger implementation
CEGUI_HAS_DEFAULT_LOGGER:BOOL=ON

//Specifies whether to include Freetype font support
CEGUI_HAS_FREETYPE:BOOL=ON

//Specifies whether to build the minizip based resource provider
CEGUI_HAS_MINIZIP_RESOURCE_PROVIDER:BOOL=OFF

//Specifies whether to include PCRE regexp matching for editbox
// string validation
CEGUI_HAS_PCRE_REGEX:BOOL=ON

//Specifies whether to install with RPATH set to the install location
// (TRUE) or with no RPATH set (FALSE).
CEGUI_INSTALL_WITH_RPATH:BOOL=OFF

//Specifies the ImageCodec module to use as the default
CEGUI_OPTION_DEFAULT_IMAGECODEC:STRING=SILLYImageCodec

//Specifies the XMLParser module to use as the default
CEGUI_OPTION_DEFAULT_XMLPARSER:STRING=ExpatParser

//Specifies whether to enable extra validation in the Lua script
// module in non-debug builds
CEGUI_OPTION_SAFE_LUA_MODULE:BOOL=OFF

//Specifies whether to build the CEGUI sample applications
CEGUI_SAMPLES_ENABLED:BOOL=OFF

//Specifies image codec library to link to samples in static builds.
CEGUI_STATIC_IMAGECODEC_MODULE:STRING=CEGUISILLYImageCodec

//Specifies xml parser library to link to samples in static builds.
CEGUI_STATIC_XMLPARSER_MODULE:STRING=CEGUIExpatParser

//Which string class should CEGUI use
//\n1 - utf8 and utf32 aware inbuilt string,
//\n2 - std::string without custom allocation,
//\n3 - std::basic_string allocated according to allocator config
CEGUI_STRING_CLASS:STRING=1

//Specifies whether bi-directional text will be supported via the
// fribidi library.
CEGUI_USE_FRIBIDI:BOOL=OFF

//Specifies whether bi-directional text will be supported via the
// embedded minibidi.
CEGUI_USE_MINIBIDI:BOOL=OFF

//Path to a program.
CMAKE_AR:FILEPATH=E:/MinGW/bin/ar.exe

//Sets the configuration to build (Release, Debug, etc...)
CMAKE_BUILD_TYPE:STRING=Release

//Enable/Disable color output during build.
CMAKE_COLOR_MAKEFILE:BOOL=ON

//CXX compiler.
CMAKE_CXX_COMPILER:FILEPATH=E:/MinGW/bin/g++.exe

//Flags used by the compiler during all build types.
CMAKE_CXX_FLAGS:STRING=

//Flags used by the compiler during debug builds.
CMAKE_CXX_FLAGS_DEBUG:STRING=-g

//Flags used by the compiler during release minsize builds.
CMAKE_CXX_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_CXX_FLAGS_RELEASE:STRING=-O3 -DNDEBUG

//Flags used by the compiler during Release with Debug Info builds.
CMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG

//Libraries linked by defalut with all C++ applications.
CMAKE_CXX_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

//C compiler.
CMAKE_C_COMPILER:FILEPATH=E:/MinGW/bin/gcc.exe

//Flags used by the compiler during all build types.
CMAKE_C_FLAGS:STRING=

//Flags used by the compiler during debug builds.
CMAKE_C_FLAGS_DEBUG:STRING=-g

//Flags used by the compiler during release minsize builds.
CMAKE_C_FLAGS_MINSIZEREL:STRING=-Os -DNDEBUG

//Flags used by the compiler during release builds (/MD /Ob1 /Oi
// /Ot /Oy /Gs will produce slightly less optimized but smaller
// files).
CMAKE_C_FLAGS_RELEASE:STRING=-O3 -DNDEBUG

//Flags used by the compiler during Release with Debug Info builds.
CMAKE_C_FLAGS_RELWITHDEBINFO:STRING=-O2 -g -DNDEBUG

//Libraries linked by defalut with all C applications.
CMAKE_C_STANDARD_LIBRARIES:STRING=-lkernel32 -luser32 -lgdi32 -lwinspool -lshell32 -lole32 -loleaut32 -luuid -lcomdlg32 -ladvapi32

//Flags used by the linker.
CMAKE_EXE_LINKER_FLAGS:STRING=' '

//Flags used by the linker during debug builds.
CMAKE_EXE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_EXE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Convert GNU import libraries to MS format (requires Visual Studio)
CMAKE_GNUtoMS:BOOL=OFF

//Install path prefix, prepended onto install directories.
CMAKE_INSTALL_PREFIX:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/install

//Path to a program.
CMAKE_LINKER:FILEPATH=E:/MinGW/bin/ld.exe

//Path to a program.
CMAKE_MAKE_PROGRAM:FILEPATH=E:/MinGW/msys/1.0/bin/make.exe

//Flags used by the linker during the creation of modules.
CMAKE_MODULE_LINKER_FLAGS:STRING=' '

//Flags used by the linker during debug builds.
CMAKE_MODULE_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_MODULE_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Path to a program.
CMAKE_NM:FILEPATH=E:/MinGW/bin/nm.exe

//Path to a program.
CMAKE_OBJCOPY:FILEPATH=E:/MinGW/bin/objcopy.exe

//Path to a program.
CMAKE_OBJDUMP:FILEPATH=E:/MinGW/bin/objdump.exe

//Path to dependencies
CMAKE_PREFIX_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies

//Value Computed by CMake
CMAKE_PROJECT_NAME:STATIC=cegui

//Path to a program.
CMAKE_RANLIB:FILEPATH=E:/MinGW/bin/ranlib.exe

//RC compiler.
CMAKE_RC_COMPILER:FILEPATH=E:/MinGW/bin/windres.exe

//Flags for Fortran compiler.
CMAKE_RC_FLAGS:STRING=' '

//Flags used by the linker during the creation of dll's.
CMAKE_SHARED_LINKER_FLAGS:STRING=' '

//Flags used by the linker during debug builds.
CMAKE_SHARED_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_SHARED_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//If set, runtime paths are not added when installing shared libraries,
// but are added when building.
CMAKE_SKIP_INSTALL_RPATH:BOOL=OFF

//If set, runtime paths are not added when using shared libraries.
CMAKE_SKIP_RPATH:BOOL=OFF

//Flags used by the linker during the creation of static libraries.
CMAKE_STATIC_LINKER_FLAGS:STRING=

//Flags used by the linker during debug builds.
CMAKE_STATIC_LINKER_FLAGS_DEBUG:STRING=

//Flags used by the linker during release minsize builds.
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL:STRING=

//Flags used by the linker during release builds.
CMAKE_STATIC_LINKER_FLAGS_RELEASE:STRING=

//Flags used by the linker during Release with Debug Info builds.
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO:STRING=

//Path to a program.
CMAKE_STRIP:FILEPATH=E:/MinGW/bin/strip.exe

//If true, cmake will use relative paths in makefiles and projects.
CMAKE_USE_RELATIVE_PATHS:BOOL=OFF

//If this value is on, makefiles will be generated without the
// .SILENT directive, and all commands will be echoed to the console
// during the make.  This is useful for debugging only. With Visual
// Studio IDE projects all commands are done without /nologo.
CMAKE_VERBOSE_MAKEFILE:BOOL=OFF

//Path to a file.
CORONA_H_PATH:PATH=CORONA_H_PATH-NOTFOUND

//Path to a library.
CORONA_LIB:FILEPATH=CORONA_LIB-NOTFOUND

//Path to a library.
CORONA_LIB_DBG:FILEPATH=CORONA_LIB_DBG-NOTFOUND

//Path to a library.
CORONA_LIB_STATIC:FILEPATH=CORONA_LIB_STATIC-NOTFOUND

//Path to a library.
CORONA_LIB_STATIC_DBG:FILEPATH=CORONA_LIB_STATIC_DBG-NOTFOUND

//Enable to build NSIS packages
CPACK_BINARY_NSIS:BOOL=ON

//Enable to build WiX packages
CPACK_BINARY_WIX:BOOL=OFF

//Enable to build ZIP packages
CPACK_BINARY_ZIP:BOOL=OFF

//Path to a file.
D3DX11EFFECTS_H_PATH:PATH=D3DX11EFFECTS_H_PATH-NOTFOUND

//Path to a library.
D3DX11EFFECTS_LIB:FILEPATH=D3DX11EFFECTS_LIB-NOTFOUND

//Path to a library.
D3DX11EFFECTS_LIB_DBG:FILEPATH=D3DX11EFFECTS_LIB_DBG-NOTFOUND

//Path to a library.
D3DX11EFFECTS_LIB_STATIC:FILEPATH=D3DX11EFFECTS_LIB_STATIC-NOTFOUND

//Path to a library.
D3DX11EFFECTS_LIB_STATIC_DBG:FILEPATH=D3DX11EFFECTS_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
DIRECTFB_H_PATH:PATH=DIRECTFB_H_PATH-NOTFOUND

//Path to a library.
DIRECTFB_LIB:FILEPATH=DIRECTFB_LIB-NOTFOUND

//Path to a library.
DIRECTFB_LIB_DBG:FILEPATH=DIRECTFB_LIB_DBG-NOTFOUND

//Path to a library.
DIRECTFB_LIB_STATIC:FILEPATH=DIRECTFB_LIB_STATIC-NOTFOUND

//Path to a library.
DIRECTFB_LIB_STATIC_DBG:FILEPATH=DIRECTFB_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
DIRECTXSDK_H_PATH:PATH=DIRECTXSDK_H_PATH-NOTFOUND

//Path to a file.
DIRECTXSDK_LIB_PATH:PATH=DIRECTXSDK_LIB_PATH-NOTFOUND

//Graphviz Dot tool for using Doxygen
DOXYGEN_DOT_EXECUTABLE:FILEPATH=DOXYGEN_DOT_EXECUTABLE-NOTFOUND

//Doxygen documentation generation tool (http://www.doxygen.org)
DOXYGEN_EXECUTABLE:FILEPATH=E:/Program Files/doxygen/bin/doxygen.exe

//preprocessor definitions
EXPAT_DEFINITIONS:STRING=XML_STATIC

//Path to a file.
EXPAT_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
EXPAT_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libexpat.dll.a

//Path to a library.
EXPAT_LIB_DBG:FILEPATH=EXPAT_LIB_DBG-NOTFOUND

//Path to a library.
EXPAT_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libexpat.a

//Path to a library.
EXPAT_LIB_STATIC_DBG:FILEPATH=EXPAT_LIB_STATIC_DBG-NOTFOUND

//preprocessor definitions
FREEIMAGE_DEFINITIONS_STATIC:STRING=FREEIMAGE_LIB

//Path to a file.
FREEIMAGE_H_PATH:PATH=FREEIMAGE_H_PATH-NOTFOUND

//Path to a library.
FREEIMAGE_LIB:FILEPATH=FREEIMAGE_LIB-NOTFOUND

//Path to a library.
FREEIMAGE_LIB_DBG:FILEPATH=FREEIMAGE_LIB_DBG-NOTFOUND

//Path to a library.
FREEIMAGE_LIB_STATIC:FILEPATH=FREEIMAGE_LIB_STATIC-NOTFOUND

//Path to a library.
FREEIMAGE_LIB_STATIC_DBG:FILEPATH=FREEIMAGE_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
FREETYPE_H_PATH_ft2build:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a file.
FREETYPE_H_PATH_ftconfig:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
FREETYPE_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libfreetype.dll.a

//Path to a library.
FREETYPE_LIB_DBG:FILEPATH=FREETYPE_LIB_DBG-NOTFOUND

//Path to a library.
FREETYPE_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libfreetype.a

//Path to a library.
FREETYPE_LIB_STATIC_DBG:FILEPATH=FREETYPE_LIB_STATIC_DBG-NOTFOUND

//Path to a library.
FRIBIDI_D_LIBRARY_DBG:FILEPATH=FRIBIDI_D_LIBRARY_DBG-NOTFOUND

//Path to a library.
FRIBIDI_D_LIBRARY_STATIC_DBG:FILEPATH=FRIBIDI_D_LIBRARY_STATIC_DBG-NOTFOUND

//Path to a file.
FRIBIDI_H_PATH:PATH=FRIBIDI_H_PATH-NOTFOUND

//Path to a library.
FRIBIDI_LIBRARY:FILEPATH=FRIBIDI_LIBRARY-NOTFOUND

//Path to a library.
FRIBIDI_LIBRARY_STATIC:FILEPATH=FRIBIDI_LIBRARY_STATIC-NOTFOUND

//Path to a file.
GLEW_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
GLEW_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libglew.dll.a

//Path to a library.
GLEW_LIB_DBG:FILEPATH=GLEW_LIB_DBG-NOTFOUND

//Path to a library.
GLEW_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libglew.a

//Path to a library.
GLEW_LIB_STATIC_DBG:FILEPATH=GLEW_LIB_STATIC_DBG-NOTFOUND

//preprocessor definitions
GLFW_DEFINITIONS_DYNAMIC:STRING=GLFW_DLL

//Path to a file.
GLFW_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
GLFW_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libglfw.dll.a

//Path to a library.
GLFW_LIB_DBG:FILEPATH=GLFW_LIB_DBG-NOTFOUND

//Path to a library.
GLFW_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libglfw.a

//Path to a library.
GLFW_LIB_STATIC_DBG:FILEPATH=GLFW_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
GLM_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a file.
GTK2_ATK_INCLUDE_DIR:PATH=GTK2_ATK_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_ATK_LIBRARY_DEBUG:FILEPATH=GTK2_ATK_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_ATK_LIBRARY_RELEASE:FILEPATH=GTK2_ATK_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_CAIRO_INCLUDE_DIR:PATH=GTK2_CAIRO_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_CAIRO_LIBRARY_DEBUG:FILEPATH=GTK2_CAIRO_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_CAIRO_LIBRARY_RELEASE:FILEPATH=GTK2_CAIRO_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_FONTCONFIG_INCLUDE_DIR:PATH=GTK2_FONTCONFIG_INCLUDE_DIR-NOTFOUND

//Path to a file.
GTK2_GDKCONFIG_INCLUDE_DIR:PATH=GTK2_GDKCONFIG_INCLUDE_DIR-NOTFOUND

//Path to a file.
GTK2_GDK_INCLUDE_DIR:PATH=GTK2_GDK_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_GDK_LIBRARY_DEBUG:FILEPATH=GTK2_GDK_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GDK_LIBRARY_RELEASE:FILEPATH=GTK2_GDK_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_GDK_PIXBUF_INCLUDE_DIR:PATH=GTK2_GDK_PIXBUF_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_GDK_PIXBUF_LIBRARY_DEBUG:FILEPATH=GTK2_GDK_PIXBUF_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GDK_PIXBUF_LIBRARY_RELEASE:FILEPATH=GTK2_GDK_PIXBUF_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
GTK2_GIO_LIBRARY_DEBUG:FILEPATH=GTK2_GIO_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GIO_LIBRARY_RELEASE:FILEPATH=GTK2_GIO_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_GLIBCONFIG_INCLUDE_DIR:PATH=GTK2_GLIBCONFIG_INCLUDE_DIR-NOTFOUND

//Path to a file.
GTK2_GLIB_INCLUDE_DIR:PATH=GTK2_GLIB_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_GLIB_LIBRARY_DEBUG:FILEPATH=GTK2_GLIB_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GLIB_LIBRARY_RELEASE:FILEPATH=GTK2_GLIB_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
GTK2_GMODULE_LIBRARY_DEBUG:FILEPATH=GTK2_GMODULE_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GMODULE_LIBRARY_RELEASE:FILEPATH=GTK2_GMODULE_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_GOBJECT_INCLUDE_DIR:PATH=GTK2_GOBJECT_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_GOBJECT_LIBRARY_DEBUG:FILEPATH=GTK2_GOBJECT_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GOBJECT_LIBRARY_RELEASE:FILEPATH=GTK2_GOBJECT_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
GTK2_GTHREAD_LIBRARY_DEBUG:FILEPATH=GTK2_GTHREAD_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GTHREAD_LIBRARY_RELEASE:FILEPATH=GTK2_GTHREAD_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_GTK_INCLUDE_DIR:PATH=GTK2_GTK_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_GTK_LIBRARY_DEBUG:FILEPATH=GTK2_GTK_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_GTK_LIBRARY_RELEASE:FILEPATH=GTK2_GTK_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
GTK2_PANGOCAIRO_LIBRARY_DEBUG:FILEPATH=GTK2_PANGOCAIRO_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_PANGOCAIRO_LIBRARY_RELEASE:FILEPATH=GTK2_PANGOCAIRO_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
GTK2_PANGOFT2_LIBRARY_DEBUG:FILEPATH=GTK2_PANGOFT2_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_PANGOFT2_LIBRARY_RELEASE:FILEPATH=GTK2_PANGOFT2_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
GTK2_PANGOXFT_LIBRARY_DEBUG:FILEPATH=GTK2_PANGOXFT_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_PANGOXFT_LIBRARY_RELEASE:FILEPATH=GTK2_PANGOXFT_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
GTK2_PANGO_INCLUDE_DIR:PATH=GTK2_PANGO_INCLUDE_DIR-NOTFOUND

//Path to a library.
GTK2_PANGO_LIBRARY_DEBUG:FILEPATH=GTK2_PANGO_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
GTK2_PANGO_LIBRARY_RELEASE:FILEPATH=GTK2_PANGO_LIBRARY_RELEASE-NOTFOUND

//Path to a library.
ILU_LIB:FILEPATH=ILU_LIB-NOTFOUND

//Path to a library.
ILU_LIB_DBG:FILEPATH=ILU_LIB_DBG-NOTFOUND

//Path to a library.
ILU_LIB_STATIC:FILEPATH=ILU_LIB_STATIC-NOTFOUND

//Path to a library.
ILU_LIB_STATIC_DBG:FILEPATH=ILU_LIB_STATIC_DBG-NOTFOUND

//preprocessor definitions
IL_DEFINITIONS_STATIC:STRING=IL_STATIC_LIB

//Path to a file.
IL_H_PATH:PATH=IL_H_PATH-NOTFOUND

//Path to a library.
IL_LIB:FILEPATH=C:/Windows/System32/devil.dll

//Path to a library.
IL_LIB_DBG:FILEPATH=IL_LIB_DBG-NOTFOUND

//Path to a library.
IL_LIB_STATIC:FILEPATH=C:/Windows/System32/devil.dll

//Path to a library.
IL_LIB_STATIC_DBG:FILEPATH=IL_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
IRRLICHT_H_PATH:PATH=IRRLICHT_H_PATH-NOTFOUND

//Path to a library.
IRRLICHT_LIB:FILEPATH=IRRLICHT_LIB-NOTFOUND

//Path to a library.
IRRLICHT_LIB_DBG:FILEPATH=IRRLICHT_LIB_DBG-NOTFOUND

//Path to a file.
LIBXML2_INCLUDE_DIR:PATH=LIBXML2_INCLUDE_DIR-NOTFOUND

//Path to a library.
LIBXML2_LIBRARIES:FILEPATH=E:/Program Files (x86)/Java/jre7/bin/libxml2.dll

//Path to a program.
LIBXML2_XMLLINT_EXECUTABLE:FILEPATH=LIBXML2_XMLLINT_EXECUTABLE-NOTFOUND

//Path to a file.
LUA_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
LUA_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/liblua.dll.a

//Path to a library.
LUA_LIB_DBG:FILEPATH=LUA_LIB_DBG-NOTFOUND

//Path to a library.
LUA_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/liblua.a

//Path to a library.
LUA_LIB_STATIC_DBG:FILEPATH=LUA_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
MINIZIP_H_PATH:PATH=MINIZIP_H_PATH-NOTFOUND

//Path to a library.
MINIZIP_LIB:FILEPATH=MINIZIP_LIB-NOTFOUND

//Path to a library.
MINIZIP_LIB_DBG:FILEPATH=MINIZIP_LIB_DBG-NOTFOUND

//Path to a library.
MINIZIP_LIB_STATIC:FILEPATH=MINIZIP_LIB_STATIC-NOTFOUND

//Path to a library.
MINIZIP_LIB_STATIC_DBG:FILEPATH=MINIZIP_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
OGRE_H_BUILD_SETTINGS_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/include/OGRE

//Path to a file.
OGRE_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/include/OGRE

//Path to a library.
OGRE_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/lib/Release/OgreMain.lib

//Path to a library.
OGRE_LIB_DBG:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/lib/Debug/OgreMain_d.lib

//Path to a file.
OIS_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/sinbad-ogre-e362f8408375/bin/sdk-release/include/OIS

//Path to a library.
OIS_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/sinbad-ogre-e362f8408375/bin/sdk-release/lib/release/libOIS.dll.a

//Path to a library.
OIS_LIB_DBG:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/sinbad-ogre-e362f8408375/bin/sdk-debug/lib/debug/libOIS_d.dll.a

//Path to a file.
OPENGLES_H_PATH:PATH=OPENGLES_H_PATH-NOTFOUND

//Path to a library.
OPENGLES_LIB:FILEPATH=OPENGLES_LIB-NOTFOUND

//OpenGL library for win32
OPENGL_gl_LIBRARY:STRING=opengl32

//GLU library for win32
OPENGL_glu_LIBRARY:STRING=glu32

//preprocessor definitions
PCRE_DEFINITIONS_STATIC:STRING=PCRE_STATIC

//Path to a file.
PCRE_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
PCRE_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libpcre.dll.a

//Path to a library.
PCRE_LIB_DBG:FILEPATH=PCRE_LIB_DBG-NOTFOUND

//Path to a library.
PCRE_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libpcre.a

//Path to a library.
PCRE_LIB_STATIC_DBG:FILEPATH=PCRE_LIB_STATIC_DBG-NOTFOUND

//pkg-config executable
PKG_CONFIG_EXECUTABLE:FILEPATH=PKG_CONFIG_EXECUTABLE-NOTFOUND

//Path to a file.
PVRTOOLS_H_PATH:PATH=PVRTOOLS_H_PATH-NOTFOUND

//Path to a library.
PVRTOOLS_LIB:FILEPATH=PVRTOOLS_LIB-NOTFOUND

//Path to a library.
PYTHON_DEBUG_LIBRARY:FILEPATH=PYTHON_DEBUG_LIBRARY-NOTFOUND

//Path to a program.
PYTHON_EXECUTABLE:FILEPATH=E:/Python27/python.exe

//Path to a file.
PYTHON_INCLUDE_DIR:PATH=PYTHON_INCLUDE_DIR-NOTFOUND

//Path to a library.
PYTHON_LIBRARY:FILEPATH=PYTHON_LIBRARY-NOTFOUND

//Path to a library.
PYTHON_LIBRARY_DEBUG:FILEPATH=PYTHON_LIBRARY_DEBUG-NOTFOUND

//Path to a library.
PYTHON_LIBRARY_RELEASE:FILEPATH=PYTHON_LIBRARY_RELEASE-NOTFOUND

//Path to a file.
RAPIDXML_H_PATH:PATH=RAPIDXML_H_PATH-NOTFOUND

//preprocessor definitions
SILLY_DEFINITIONS_STATIC:STRING=SILLY_STATIC

//Path to a file.
SILLY_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
SILLY_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libSILLY.dll.a

//Path to a library.
SILLY_LIB_DBG:FILEPATH=SILLY_LIB_DBG-NOTFOUND

//Path to a library.
SILLY_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libSILLY.a

//Path to a library.
SILLY_LIB_STATIC_DBG:FILEPATH=SILLY_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
TINYXML_H_PATH:PATH=TINYXML_H_PATH-NOTFOUND

//Path to a library.
TINYXML_LIB:FILEPATH=TINYXML_LIB-NOTFOUND

//Path to a library.
TINYXML_LIB_DBG:FILEPATH=TINYXML_LIB_DBG-NOTFOUND

//Path to a library.
TINYXML_LIB_STATIC:FILEPATH=TINYXML_LIB_STATIC-NOTFOUND

//Path to a library.
TINYXML_LIB_STATIC_DBG:FILEPATH=TINYXML_LIB_STATIC_DBG-NOTFOUND

//Path to a file.
TOLUAPP_H_PATH:PATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include

//Path to a library.
TOLUAPP_LIB:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libtoluapp.dll.a

//Path to a library.
TOLUAPP_LIB_DBG:FILEPATH=TOLUAPP_LIB_DBG-NOTFOUND

//Path to a library.
TOLUAPP_LIB_STATIC:FILEPATH=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/static/libtoluapp.a

//Path to a library.
TOLUAPP_LIB_STATIC_DBG:FILEPATH=TOLUAPP_LIB_STATIC_DBG-NOTFOUND

//preprocessor definitions
XERCESC_DEFINITIONS_STATIC:STRING=XERCES_STATIC_LIBRARY

//Path to a file.
XERCESC_H_PATH:PATH=XERCESC_H_PATH-NOTFOUND

//Path to a library.
XERCESC_LIB:FILEPATH=XERCESC_LIB-NOTFOUND

//Path to a library.
XERCESC_LIB_DBG:FILEPATH=XERCESC_LIB_DBG-NOTFOUND

//Path to a library.
XERCESC_LIB_STATIC:FILEPATH=XERCESC_LIB_STATIC-NOTFOUND

//Path to a library.
XERCESC_LIB_STATIC_DBG:FILEPATH=XERCESC_LIB_STATIC_DBG-NOTFOUND

//...
_LIB_PATH:FILEPATH=_LIB_PATH-NOTFOUND

//Value Computed by CMake
cegui_BINARY_DIR:STATIC=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/build

//Value Computed by CMake
cegui_SOURCE_DIR:STATIC=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI


########################
# INTERNAL cache entries
########################

//ADVANCED property for variable: Boost_DIR
Boost_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_INCLUDE_DIR
Boost_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_LIBRARY_DIR
Boost_LIBRARY_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_PYTHON_LIBRARY_DEBUG
Boost_PYTHON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_PYTHON_LIBRARY_RELEASE
Boost_PYTHON_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_SYSTEM_LIBRARY_DEBUG
Boost_SYSTEM_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_SYSTEM_LIBRARY_RELEASE
Boost_SYSTEM_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_THREAD_LIBRARY_DEBUG
Boost_THREAD_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_THREAD_LIBRARY_RELEASE
Boost_THREAD_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_UNIT_TEST_FRAMEWORK_LIBRARY_DEBUG
Boost_UNIT_TEST_FRAMEWORK_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE
Boost_UNIT_TEST_FRAMEWORK_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_AR
CMAKE_AR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_BUILD_TOOL
CMAKE_BUILD_TOOL-ADVANCED:INTERNAL=1
//What is the target build tool cmake is generating for.
CMAKE_BUILD_TOOL:INTERNAL=E:/MinGW/msys/1.0/bin/make.exe
//This is the directory where this CMakeCache.txt was created
CMAKE_CACHEFILE_DIR:INTERNAL=e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/build
//Major version of cmake used to create the current loaded cache
CMAKE_CACHE_MAJOR_VERSION:INTERNAL=2
//Minor version of cmake used to create the current loaded cache
CMAKE_CACHE_MINOR_VERSION:INTERNAL=8
//Patch version of cmake used to create the current loaded cache
CMAKE_CACHE_PATCH_VERSION:INTERNAL=12
//ADVANCED property for variable: CMAKE_COLOR_MAKEFILE
CMAKE_COLOR_MAKEFILE-ADVANCED:INTERNAL=1
//Path to CMake executable.
CMAKE_COMMAND:INTERNAL=E:/Program Files (x86)/CMake 2.8/bin/cmake.exe
//Path to cpack program executable.
CMAKE_CPACK_COMMAND:INTERNAL=E:/Program Files (x86)/CMake 2.8/bin/cpack.exe
//Path to ctest program executable.
CMAKE_CTEST_COMMAND:INTERNAL=E:/Program Files (x86)/CMake 2.8/bin/ctest.exe
//ADVANCED property for variable: CMAKE_CXX_COMPILER
CMAKE_CXX_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS
CMAKE_CXX_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_DEBUG
CMAKE_CXX_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_MINSIZEREL
CMAKE_CXX_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELEASE
CMAKE_CXX_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_FLAGS_RELWITHDEBINFO
CMAKE_CXX_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_CXX_STANDARD_LIBRARIES
CMAKE_CXX_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_COMPILER
CMAKE_C_COMPILER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS
CMAKE_C_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_DEBUG
CMAKE_C_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_MINSIZEREL
CMAKE_C_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELEASE
CMAKE_C_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_FLAGS_RELWITHDEBINFO
CMAKE_C_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_C_STANDARD_LIBRARIES
CMAKE_C_STANDARD_LIBRARIES-ADVANCED:INTERNAL=1
//Path to cache edit program executable.
CMAKE_EDIT_COMMAND:INTERNAL=E:/Program Files (x86)/CMake 2.8/bin/cmake-gui.exe
//Executable file format
CMAKE_EXECUTABLE_FORMAT:INTERNAL=Unknown
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS
CMAKE_EXE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_DEBUG
CMAKE_EXE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_MINSIZEREL
CMAKE_EXE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELEASE
CMAKE_EXE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_EXE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//Name of generator.
CMAKE_GENERATOR:INTERNAL=MSYS Makefiles
//Name of generator toolset.
CMAKE_GENERATOR_TOOLSET:INTERNAL=
//Start directory with the top level CMakeLists.txt file for this
// project
CMAKE_HOME_DIRECTORY:INTERNAL=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI
//ADVANCED property for variable: CMAKE_LINKER
CMAKE_LINKER-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MAKE_PROGRAM
CMAKE_MAKE_PROGRAM-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS
CMAKE_MODULE_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_DEBUG
CMAKE_MODULE_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL
CMAKE_MODULE_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELEASE
CMAKE_MODULE_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_MODULE_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_NM
CMAKE_NM-ADVANCED:INTERNAL=1
//number of local generators
CMAKE_NUMBER_OF_LOCAL_GENERATORS:INTERNAL=16
//ADVANCED property for variable: CMAKE_OBJCOPY
CMAKE_OBJCOPY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_OBJDUMP
CMAKE_OBJDUMP-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RANLIB
CMAKE_RANLIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_COMPILER
CMAKE_RC_COMPILER-ADVANCED:INTERNAL=1
CMAKE_RC_COMPILER_WORKS:INTERNAL=1
//ADVANCED property for variable: CMAKE_RC_FLAGS
CMAKE_RC_FLAGS-ADVANCED:INTERNAL=1
//Path to CMake installation.
CMAKE_ROOT:INTERNAL=E:/Program Files (x86)/CMake 2.8/share/cmake-2.8
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS
CMAKE_SHARED_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_DEBUG
CMAKE_SHARED_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL
CMAKE_SHARED_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELEASE
CMAKE_SHARED_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_SHARED_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_INSTALL_RPATH
CMAKE_SKIP_INSTALL_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_SKIP_RPATH
CMAKE_SKIP_RPATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS
CMAKE_STATIC_LINKER_FLAGS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_DEBUG
CMAKE_STATIC_LINKER_FLAGS_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL
CMAKE_STATIC_LINKER_FLAGS_MINSIZEREL-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELEASE
CMAKE_STATIC_LINKER_FLAGS_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO
CMAKE_STATIC_LINKER_FLAGS_RELWITHDEBINFO-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_STRIP
CMAKE_STRIP-ADVANCED:INTERNAL=1
//Suppress Warnings that are meant for the author of the CMakeLists.txt
// files.
CMAKE_SUPPRESS_DEVELOPER_WARNINGS:INTERNAL=FALSE
//ADVANCED property for variable: CMAKE_USE_RELATIVE_PATHS
CMAKE_USE_RELATIVE_PATHS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CMAKE_VERBOSE_MAKEFILE
CMAKE_VERBOSE_MAKEFILE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CORONA_H_PATH
CORONA_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CORONA_LIB
CORONA_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CORONA_LIB_DBG
CORONA_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CORONA_LIB_STATIC
CORONA_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CORONA_LIB_STATIC_DBG
CORONA_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_NSIS
CPACK_BINARY_NSIS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_WIX
CPACK_BINARY_WIX-ADVANCED:INTERNAL=1
//ADVANCED property for variable: CPACK_BINARY_ZIP
CPACK_BINARY_ZIP-ADVANCED:INTERNAL=1
//tarball basename
CPACK_SOURCE_PACKAGE_FILE_NAME:INTERNAL=cegui-0.8.4
//ADVANCED property for variable: D3DX11EFFECTS_H_PATH
D3DX11EFFECTS_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: D3DX11EFFECTS_LIB
D3DX11EFFECTS_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: D3DX11EFFECTS_LIB_DBG
D3DX11EFFECTS_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: D3DX11EFFECTS_LIB_STATIC
D3DX11EFFECTS_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: D3DX11EFFECTS_LIB_STATIC_DBG
D3DX11EFFECTS_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTFB_H_PATH
DIRECTFB_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTFB_LIB
DIRECTFB_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTFB_LIB_DBG
DIRECTFB_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTFB_LIB_STATIC
DIRECTFB_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTFB_LIB_STATIC_DBG
DIRECTFB_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTXSDK_H_PATH
DIRECTXSDK_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DIRECTXSDK_LIB_PATH
DIRECTXSDK_LIB_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DOXYGEN_DOT_EXECUTABLE
DOXYGEN_DOT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: DOXYGEN_EXECUTABLE
DOXYGEN_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: EXPAT_DEFINITIONS
EXPAT_DEFINITIONS-ADVANCED:INTERNAL=1
//ADVANCED property for variable: EXPAT_H_PATH
EXPAT_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: EXPAT_LIB
EXPAT_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: EXPAT_LIB_DBG
EXPAT_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: EXPAT_LIB_STATIC
EXPAT_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: EXPAT_LIB_STATIC_DBG
EXPAT_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//Details about finding Doxygen
FIND_PACKAGE_MESSAGE_DETAILS_Doxygen:INTERNAL=[E:/Program Files/doxygen/bin/doxygen.exe][v1.8.9.1()]
//Details about finding EXPAT
FIND_PACKAGE_MESSAGE_DETAILS_EXPAT:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libexpat.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding FREETYPE
FIND_PACKAGE_MESSAGE_DETAILS_FREETYPE:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libfreetype.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding GLEW
FIND_PACKAGE_MESSAGE_DETAILS_GLEW:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libglew.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding GLFW
FIND_PACKAGE_MESSAGE_DETAILS_GLFW:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libglfw.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding GLM
FIND_PACKAGE_MESSAGE_DETAILS_GLM:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding LUA51
FIND_PACKAGE_MESSAGE_DETAILS_LUA51:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/liblua.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding OGRE
FIND_PACKAGE_MESSAGE_DETAILS_OGRE:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/lib/Release/OgreMain.lib][E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/include/OGRE][E:/Users/Jacob/Desktop/Uncategorized/Projects/Universe/Universe/lib/OgreSDK/include/OGRE][v()]
//Details about finding OIS
FIND_PACKAGE_MESSAGE_DETAILS_OIS:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/sinbad-ogre-e362f8408375/bin/sdk-release/lib/release/libOIS.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/sinbad-ogre-e362f8408375/bin/sdk-release/include/OIS][v()]
//Details about finding OpenGL
FIND_PACKAGE_MESSAGE_DETAILS_OpenGL:INTERNAL=[opengl32][v()]
//Details about finding PCRE
FIND_PACKAGE_MESSAGE_DETAILS_PCRE:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libpcre.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding PythonInterp
FIND_PACKAGE_MESSAGE_DETAILS_PythonInterp:INTERNAL=[E:/Python27/python.exe][v2.7()]
//Details about finding SILLY
FIND_PACKAGE_MESSAGE_DETAILS_SILLY:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libSILLY.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//Details about finding TOLUAPP
FIND_PACKAGE_MESSAGE_DETAILS_TOLUAPP:INTERNAL=[E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/lib/dynamic/libtoluapp.dll.a][E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/dependencies/include][v()]
//ADVANCED property for variable: FREEIMAGE_DEFINITIONS_STATIC
FREEIMAGE_DEFINITIONS_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREEIMAGE_H_PATH
FREEIMAGE_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREEIMAGE_LIB
FREEIMAGE_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREEIMAGE_LIB_DBG
FREEIMAGE_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREEIMAGE_LIB_STATIC
FREEIMAGE_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREEIMAGE_LIB_STATIC_DBG
FREEIMAGE_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREETYPE_H_PATH_ft2build
FREETYPE_H_PATH_ft2build-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREETYPE_H_PATH_ftconfig
FREETYPE_H_PATH_ftconfig-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREETYPE_LIB
FREETYPE_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREETYPE_LIB_DBG
FREETYPE_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREETYPE_LIB_STATIC
FREETYPE_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FREETYPE_LIB_STATIC_DBG
FREETYPE_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FRIBIDI_D_LIBRARY_DBG
FRIBIDI_D_LIBRARY_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FRIBIDI_D_LIBRARY_STATIC_DBG
FRIBIDI_D_LIBRARY_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FRIBIDI_H_PATH
FRIBIDI_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FRIBIDI_LIBRARY
FRIBIDI_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: FRIBIDI_LIBRARY_STATIC
FRIBIDI_LIBRARY_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLEW_H_PATH
GLEW_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLEW_LIB
GLEW_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLEW_LIB_DBG
GLEW_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLEW_LIB_STATIC
GLEW_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLEW_LIB_STATIC_DBG
GLEW_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLFW_DEFINITIONS_DYNAMIC
GLFW_DEFINITIONS_DYNAMIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLFW_H_PATH
GLFW_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLFW_LIB
GLFW_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLFW_LIB_DBG
GLFW_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLFW_LIB_STATIC
GLFW_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLFW_LIB_STATIC_DBG
GLFW_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GLM_H_PATH
GLM_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_ATK_LIBRARY_DEBUG
GTK2_ATK_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_ATK_LIBRARY_RELEASE
GTK2_ATK_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_CAIRO_LIBRARY_DEBUG
GTK2_CAIRO_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_CAIRO_LIBRARY_RELEASE
GTK2_CAIRO_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GDK_LIBRARY_DEBUG
GTK2_GDK_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GDK_LIBRARY_RELEASE
GTK2_GDK_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GDK_PIXBUF_LIBRARY_DEBUG
GTK2_GDK_PIXBUF_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GDK_PIXBUF_LIBRARY_RELEASE
GTK2_GDK_PIXBUF_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GIO_LIBRARY_DEBUG
GTK2_GIO_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GIO_LIBRARY_RELEASE
GTK2_GIO_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GLIB_LIBRARY_DEBUG
GTK2_GLIB_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GLIB_LIBRARY_RELEASE
GTK2_GLIB_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GMODULE_LIBRARY_DEBUG
GTK2_GMODULE_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GMODULE_LIBRARY_RELEASE
GTK2_GMODULE_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GOBJECT_LIBRARY_DEBUG
GTK2_GOBJECT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GOBJECT_LIBRARY_RELEASE
GTK2_GOBJECT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GTHREAD_LIBRARY_DEBUG
GTK2_GTHREAD_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GTHREAD_LIBRARY_RELEASE
GTK2_GTHREAD_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GTK_LIBRARY_DEBUG
GTK2_GTK_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_GTK_LIBRARY_RELEASE
GTK2_GTK_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGOCAIRO_LIBRARY_DEBUG
GTK2_PANGOCAIRO_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGOCAIRO_LIBRARY_RELEASE
GTK2_PANGOCAIRO_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGOFT2_LIBRARY_DEBUG
GTK2_PANGOFT2_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGOFT2_LIBRARY_RELEASE
GTK2_PANGOFT2_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGOXFT_LIBRARY_DEBUG
GTK2_PANGOXFT_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGOXFT_LIBRARY_RELEASE
GTK2_PANGOXFT_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGO_LIBRARY_DEBUG
GTK2_PANGO_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: GTK2_PANGO_LIBRARY_RELEASE
GTK2_PANGO_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ILU_LIB
ILU_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ILU_LIB_DBG
ILU_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ILU_LIB_STATIC
ILU_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: ILU_LIB_STATIC_DBG
ILU_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IL_DEFINITIONS_STATIC
IL_DEFINITIONS_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IL_H_PATH
IL_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IL_LIB
IL_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IL_LIB_DBG
IL_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IL_LIB_STATIC
IL_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IL_LIB_STATIC_DBG
IL_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IRRLICHT_H_PATH
IRRLICHT_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IRRLICHT_LIB
IRRLICHT_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: IRRLICHT_LIB_DBG
IRRLICHT_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXML2_INCLUDE_DIR
LIBXML2_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXML2_LIBRARIES
LIBXML2_LIBRARIES-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LIBXML2_XMLLINT_EXECUTABLE
LIBXML2_XMLLINT_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LUA_H_PATH
LUA_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LUA_LIB
LUA_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LUA_LIB_DBG
LUA_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LUA_LIB_STATIC
LUA_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: LUA_LIB_STATIC_DBG
LUA_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MINIZIP_H_PATH
MINIZIP_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MINIZIP_LIB
MINIZIP_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MINIZIP_LIB_DBG
MINIZIP_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MINIZIP_LIB_STATIC
MINIZIP_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: MINIZIP_LIB_STATIC_DBG
MINIZIP_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OGRE_H_BUILD_SETTINGS_PATH
OGRE_H_BUILD_SETTINGS_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OGRE_H_PATH
OGRE_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OGRE_LIB
OGRE_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OGRE_LIB_DBG
OGRE_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OIS_H_PATH
OIS_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OIS_LIB
OIS_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OIS_LIB_DBG
OIS_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OPENGLES_H_PATH
OPENGLES_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OPENGLES_LIB
OPENGLES_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OPENGL_gl_LIBRARY
OPENGL_gl_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: OPENGL_glu_LIBRARY
OPENGL_glu_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PCRE_H_PATH
PCRE_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PCRE_LIB
PCRE_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PCRE_LIB_DBG
PCRE_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PCRE_LIB_STATIC
PCRE_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PCRE_LIB_STATIC_DBG
PCRE_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
PC_FRIBIDI_CFLAGS:INTERNAL=
PC_FRIBIDI_CFLAGS_I:INTERNAL=
PC_FRIBIDI_CFLAGS_OTHER:INTERNAL=
PC_FRIBIDI_FOUND:INTERNAL=
PC_FRIBIDI_INCLUDEDIR:INTERNAL=
PC_FRIBIDI_LIBDIR:INTERNAL=
PC_FRIBIDI_LIBS:INTERNAL=
PC_FRIBIDI_LIBS_L:INTERNAL=
PC_FRIBIDI_LIBS_OTHER:INTERNAL=
PC_FRIBIDI_LIBS_PATHS:INTERNAL=
PC_FRIBIDI_PREFIX:INTERNAL=
PC_FRIBIDI_STATIC_CFLAGS:INTERNAL=
PC_FRIBIDI_STATIC_CFLAGS_I:INTERNAL=
PC_FRIBIDI_STATIC_CFLAGS_OTHER:INTERNAL=
PC_FRIBIDI_STATIC_LIBDIR:INTERNAL=
PC_FRIBIDI_STATIC_LIBS:INTERNAL=
PC_FRIBIDI_STATIC_LIBS_L:INTERNAL=
PC_FRIBIDI_STATIC_LIBS_OTHER:INTERNAL=
PC_FRIBIDI_STATIC_LIBS_PATHS:INTERNAL=
PC_FRIBIDI_VERSION:INTERNAL=
PC_LIBXML_CFLAGS:INTERNAL=
PC_LIBXML_CFLAGS_I:INTERNAL=
PC_LIBXML_CFLAGS_OTHER:INTERNAL=
PC_LIBXML_FOUND:INTERNAL=
PC_LIBXML_INCLUDEDIR:INTERNAL=
PC_LIBXML_LIBDIR:INTERNAL=
PC_LIBXML_LIBS:INTERNAL=
PC_LIBXML_LIBS_L:INTERNAL=
PC_LIBXML_LIBS_OTHER:INTERNAL=
PC_LIBXML_LIBS_PATHS:INTERNAL=
PC_LIBXML_PREFIX:INTERNAL=
PC_LIBXML_STATIC_CFLAGS:INTERNAL=
PC_LIBXML_STATIC_CFLAGS_I:INTERNAL=
PC_LIBXML_STATIC_CFLAGS_OTHER:INTERNAL=
PC_LIBXML_STATIC_LIBDIR:INTERNAL=
PC_LIBXML_STATIC_LIBS:INTERNAL=
PC_LIBXML_STATIC_LIBS_L:INTERNAL=
PC_LIBXML_STATIC_LIBS_OTHER:INTERNAL=
PC_LIBXML_STATIC_LIBS_PATHS:INTERNAL=
PC_LIBXML_VERSION:INTERNAL=
//ADVANCED property for variable: PKG_CONFIG_EXECUTABLE
PKG_CONFIG_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PVRTOOLS_H_PATH
PVRTOOLS_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PVRTOOLS_LIB
PVRTOOLS_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_DEBUG_LIBRARY
PYTHON_DEBUG_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_EXECUTABLE
PYTHON_EXECUTABLE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_INCLUDE_DIR
PYTHON_INCLUDE_DIR-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY
PYTHON_LIBRARY-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY_DEBUG
PYTHON_LIBRARY_DEBUG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: PYTHON_LIBRARY_RELEASE
PYTHON_LIBRARY_RELEASE-ADVANCED:INTERNAL=1
//ADVANCED property for variable: RAPIDXML_H_PATH
RAPIDXML_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SILLY_DEFINITIONS_STATIC
SILLY_DEFINITIONS_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SILLY_H_PATH
SILLY_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SILLY_LIB
SILLY_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SILLY_LIB_DBG
SILLY_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SILLY_LIB_STATIC
SILLY_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: SILLY_LIB_STATIC_DBG
SILLY_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TINYXML_H_PATH
TINYXML_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TINYXML_LIB
TINYXML_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TINYXML_LIB_DBG
TINYXML_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TINYXML_LIB_STATIC
TINYXML_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TINYXML_LIB_STATIC_DBG
TINYXML_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TOLUAPP_H_PATH
TOLUAPP_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TOLUAPP_LIB
TOLUAPP_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TOLUAPP_LIB_DBG
TOLUAPP_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TOLUAPP_LIB_STATIC
TOLUAPP_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: TOLUAPP_LIB_STATIC_DBG
TOLUAPP_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XERCESC_DEFINITIONS_STATIC
XERCESC_DEFINITIONS_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XERCESC_H_PATH
XERCESC_H_PATH-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XERCESC_LIB
XERCESC_LIB-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XERCESC_LIB_DBG
XERCESC_LIB_DBG-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XERCESC_LIB_STATIC
XERCESC_LIB_STATIC-ADVANCED:INTERNAL=1
//ADVANCED property for variable: XERCESC_LIB_STATIC_DBG
XERCESC_LIB_STATIC_DBG-ADVANCED:INTERNAL=1
//Components requested for this build tree.
_Boost_COMPONENTS_SEARCHED:INTERNAL=python;system;thread;unit_test_framework
//Last used Boost_INCLUDE_DIR value.
_Boost_INCLUDE_DIR_LAST:INTERNAL=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0
//Last used Boost_LIBRARY_DIR value.
_Boost_LIBRARY_DIR_LAST:INTERNAL=E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/boost_1_57_0/stage/lib
//Last used Boost_USE_MULTITHREADED value.
_Boost_USE_MULTITHREADED_LAST:INTERNAL=TRUE
__pkg_config_checked_PC_FRIBIDI:INTERNAL=1
__pkg_config_checked_PC_LIBXML:INTERNAL=1




I tried to mess around with cmake, but nothing would make this error go away. Any help would be appreciated. If you need more information, version numbers, just let me know!

Thank you in advance!

Cheers,
Jacob

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: Error during Build: _wfindnext64i32 not declared

Postby Ident » Fri Mar 06, 2015 23:07

Thanks for the very elaborate and accurate report. This is the stuff we need :pint:
I read carefully through your post and I must say, this is quite a weird error and I have never seen it or anything similar to it, ever before.

First of all, regarding the boost issues, please try the v0-8 sources: https://bitbucket.org/cegui/cegui/get/v0-8.zip
I ask you to do this because I think I fixed the boost detection for Ogre in v0-8 and that fix will only appear in 0.8.5. Please tell me if this is still an issue with the above files. I used Ogre without boost (and have tested it recently again) and for me it worked fine, so I believe it must be an issue only with 0.8.4 anymore. If it really is just in 0.8.4, I can push for a soon release because this is unacceptable to Ogre users that this would not work.
I doubt this will fix the other issue, however, so there we go:

So this is the relevant part of your build:

Code: Select all

[  9%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultResourceProvider.cpp.obj
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp: In member function 'virtual size_t CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const CEGUI
::String&, const CEGUI::String&)':
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp:177:25: error: aggregate 'CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const CEGUI::String&,
 const CEGUI::String&)::_wfinddata64i32_t fd' has incomplete type and cannot be defined
     struct _wfinddata_t fd;
                         ^
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp:180:50: error: '_wfindfirst64i32' was not declared in this scope
             dir_name + file_pattern).c_str(), &fd)) != -1)
                                                  ^
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI/cegui/src/DefaultResourceProvider.cpp:190:33: error: '_wfindnext64i32' was not declared in this scope
         while (_wfindnext(f, &fd) == 0);
                                 ^
make[2]: *** [cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultResourceProvider.cpp.obj] Error 1
make[1]: *** [cegui/src/CMakeFiles/CEGUIBase-0.dir/all] Error 2
make: *** [all] Error 2

Never heard of wfindfirst. On googling this popped up: https://msdn.microsoft.com/en-us/library/zyzxfzac.aspx
And of course, the message sounds like an include is missing.


I found this code

Code: Select all

// Win32 code.
#if defined(__WIN32__) || defined(_WIN32)
    intptr_t f;
    struct _wfinddata_t fd;

    if ((f = _wfindfirst(System::getStringTranscoder().stringToStdWString(
            dir_name + file_pattern).c_str(), &fd)) != -1)



So you use MINGW you said. The _wfindfirst is defined as follows:

Code: Select all

#define _wfindnext      _wfindnext64i32

inside io.h

io.h should be a part of mingw from what I have found on google. Did you check if that file is really available? It should be included in DefaultResourceProvider.cpp. So theoretically it would throw you an error if it was not. Could you open it if available and check if the above symbol is defined inside? ( _wfindnext )
CrazyEddie: "I don't like GUIs"

Jacob843
Just popping in
Just popping in
Posts: 5
Joined: Fri Mar 06, 2015 20:21

Re: Error during Build: _wfindnext64i32 not declared

Postby Jacob843 » Sat Mar 07, 2015 00:55

Hi Ident! Thanks for the quick response.

I downloaded the new sources that you gave me, copied over the dependencies, and I still got the same error (with some other stuff too):

Code: Select all

E:\Users\Jacob\Desktop\Uncategorized\Projects\Athelia\git\lib\CEGUI - new\build>make install
Scanning dependencies of target CEGUIBase-0
[  0%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Affector.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertySet.h:36:0,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/Affector.cpp:34:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  0%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Animation.cpp.obj
In file included from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/Animation.cpp:36:0:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  1%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/AnimationInstance.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertySet.h:36:0,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/Element.h:35,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/NamedElement.h:33,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/Window.h:34,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/AnimationInstance.cpp:32:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  1%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/AnimationManager.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/TplInterpolators.h:34:0,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/AnimationManager.cpp:33:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  1%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Animation_xmlHandler.cpp.obj
[  2%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Base.cpp.obj
[  2%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BasicImage.cpp.obj
[  3%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BasicRenderedStringParser.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/falagard/Enums.h:30:0,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/BasicRenderedStringParser.h:35,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/BasicRenderedStringParser.cpp:27:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  3%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BidiVisualMapping.cpp.obj
[  3%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/BoundSlot.cpp.obj
[  4%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/CentredRenderedString.cpp.obj
[  4%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/ChainedXMLHandler.cpp.obj
[  5%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Clipboard.cpp.obj
[  5%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Colour.cpp.obj
[  5%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/ColourRect.cpp.obj
[  6%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/CompositeResourceProvider.cpp.obj
[  6%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/Config_xmlHandler.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertySet.h:36:0,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/Font.h:31,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/FontManager.h:32,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/Config_xmlHandler.cpp:33:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  7%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/CoordConverter.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertySet.h:36:0,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/Element.h:35,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/NamedElement.h:33,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/Window.h:34,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/CoordConverter.cpp:28:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  7%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DataContainer.cpp.obj
[  7%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultLogger.cpp.obj
[  8%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultRenderedStringParser.cpp.obj
In file included from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/falagard/Enums.h:30:0,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/RenderedStringComponent.h:32,
                 from E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/RenderedStringTextComponent.h:30,
                 from e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/DefaultRenderedStringParser.cpp:28:
E:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/include/CEGUI/PropertyHelper.h:57:2: warning: #warning __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers [-Wcpp]
 #warning  __USE_MINGW_ANSI_STDIO must be set to 1 for sscanf and snprintf to work with 64bit integers
  ^
[  8%] Building CXX object cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultResourceProvider.cpp.obj
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/DefaultResourceProvider.cpp: In member function 'virtual size_t CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const
 CEGUI::String&, const CEGUI::String&)':
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/DefaultResourceProvider.cpp:177:25: error: aggregate 'CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const CEGUI::St
ring&, const CEGUI::String&)::_wfinddata64i32_t fd' has incomplete type and cannot be defined
     struct _wfinddata_t fd;
                         ^
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/DefaultResourceProvider.cpp:180:50: error: '_wfindfirst64i32' was not declared in this scope
             dir_name + file_pattern).c_str(), &fd)) != -1)
                                                  ^
e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/DefaultResourceProvider.cpp:190:33: error: '_wfindnext64i32' was not declared in this scope
         while (_wfindnext(f, &fd) == 0);
                                 ^
make[2]: *** [cegui/src/CMakeFiles/CEGUIBase-0.dir/DefaultResourceProvider.cpp.obj] Error 1
make[1]: *** [cegui/src/CMakeFiles/CEGUIBase-0.dir/all] Error 2
make: *** [all] Error 2

E:\Users\Jacob\Desktop\Uncategorized\Projects\Athelia\git\lib\CEGUI - new\build>



The warnings don't seem too important to my problem, but they are still there. Boost also seems to be missing: cmake is reporting "Could NOT find Boost"

I took a look in the DefaultResourceProvider.cpp file and #include <io.h> is there. I even tried to move it outside of the WIN32 if block, but no dice.

Also, it appears that _wfindnext64i32 is defined in io.h, but I found this in my search:

Code: Select all

/* _wfindfirst32 and _wfindnext32 do not exist in MSVCRT.DLL */


Could that be an issue for CEGUI?

Again, thank you for all your help.

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: Error during Build: _wfindnext64i32 not declared

Postby Ident » Sat Mar 07, 2015 01:06

In DefaultResourceProvider::getResourceGroupFileNames(...) in DefaultResourceProvider.cpp replace:

Code: Select all

// Win32 code.
#if defined(__WIN32__) || defined(_WIN32)


with

Code: Select all

// Win32 code.
#if (defined(__WIN32__) || defined(_WIN32)) && !(defined(__MINGW32__) || defined(__MINGW64__))


try it out and see if it works.


Regarding CMake not finding boost: that is a warning not an error. That warning is thrown in any case and is not bad. It just means you can't access certain functionality (tests, pycegui,..) which you probably dont need anyways.
CrazyEddie: "I don't like GUIs"

Jacob843
Just popping in
Just popping in
Posts: 5
Joined: Fri Mar 06, 2015 20:21

Re: Error during Build: _wfindnext64i32 not declared

Postby Jacob843 » Sat Mar 07, 2015 01:22

Okay, I changed what you told me to do, did a make clean and a make install, but I am still getting the same error. Could the following line from my build log mean something?

Code: Select all

e:/Users/Jacob/Desktop/Uncategorized/Projects/Athelia/git/lib/CEGUI - new/cegui/src/DefaultResourceProvider.cpp:177:25: error: aggregate 'CEGUI::DefaultResourceProvider::getResourceGroupFileNames(std::vector<CEGUI::String>&, const CEGUI::St
ring&, const CEGUI::String&)::_wfinddata64i32_t fd' has incomplete type and cannot be defined

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: Error during Build: _wfindnext64i32 not declared

Postby Ident » Sat Mar 07, 2015 01:33

Sorry it is late and I am an idiot. i edited the line you are supposed to change in the above post. Please try it again.
CrazyEddie: "I don't like GUIs"

Jacob843
Just popping in
Just popping in
Posts: 5
Joined: Fri Mar 06, 2015 20:21

Re: Error during Build: _wfindnext64i32 not declared

Postby Jacob843 » Sat Mar 07, 2015 01:34

Haha, it has been a long day for me as well. I change it again but still got the errors. I am thinking that this may be a Mingw problem.

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: Error during Build: _wfindnext64i32 not declared

Postby Ident » Sat Mar 07, 2015 10:00

Hmm okay I changed it back to its previous state. The last change I did was actually wrong and the original suggestion was right, but I dont understand why that original fix wouldnt work. I am looking into it again.

Edit: changed it again.
So what it should do is to use the alternative solution for the code in that function, which should remove the need for io.h.

Siunce getResourceGroupFileNames() should now have none of the function-calls that caused issues in it anymore, it should work if you follow my change. Are you really sure it doesnt fix the issue? You can also try to change the macro if you want, basically what you want is that it chooses the last chunk, the alternative method.
CrazyEddie: "I don't like GUIs"

Jacob843
Just popping in
Just popping in
Posts: 5
Joined: Fri Mar 06, 2015 20:21

Re: Error during Build: _wfindnext64i32 not declared

Postby Jacob843 » Sat Mar 07, 2015 18:20

Looks like that new command sort of worked. It skipped over the part that needs io.h. However, there are a lot more things not declared.

I realized that we needed the other includes, so I did this:

Code: Select all

//#if defined(__WIN32__) || defined(_WIN32)
#   include "CEGUI/System.h"
#   include <io.h>
#   include <windows.h>
#   include <string>
//#else
#   include <sys/types.h>
#   include <sys/stat.h>
#   include <dirent.h>
#   include <fnmatch.h>
//#endif


Which got rid of most of the undefined errors. However, it is saying that there is no file called fnmatch.h. I quick Google search leads me to this post. I am going to see if I can work some magic and get this to work.

User avatar
Ident
CEGUI Team
Posts: 1998
Joined: Sat Oct 31, 2009 13:57
Location: Austria

Re: Error during Build: _wfindnext64i32 not declared

Postby Ident » Sat Mar 07, 2015 20:15

I dont know what would be the best thing to do about this. A pull request would be great. Your above solution cannot be accepted though, we would have to write a macro for this part, I assume you would have to replace the WIN32 part just like it has been done in the other case. That could be accepted.
CrazyEddie: "I don't like GUIs"

timotei
Not too shy to talk
Not too shy to talk
Posts: 26
Joined: Mon Apr 29, 2013 14:17

Re: Error during Build: _wfindnext64i32 not declared

Postby timotei » Thu Apr 02, 2015 18:44

Hello Jacob,

I see you have trouble with the mingw built, altough I've successfully built cegui deps and cegui and even ran tests using boost (IIRC). For example, here are some prebuilt mingw binaries: http://vm-build-cegui.cloudapp.net/ (e.g.: cegui-dependencies-mingw-20141014-051a02.zip or cegui-sdk-mingw-20141015-v0-8-f42253.zip

First, let's settle a very important part: the toolchain you're using. From your messages it seems you're using MSYS + make. I haven't got that working last time I worked on it, so the best path is to actually use MinGW Makefiles + mingw32-make (I think you can go the mingw64 route if you really need 64 bit support, but first it would be better to get the 32 bit one working). MSYS is a slimmer version of Cygwin... so by including the cygwin headers & stuff into the compilation you can get weird results as it apparently is the case here.

So, could you give it a try using MinGW and mingw-32make *instead* of the MSYS + make variant?

Thanks!


Return to “Help”

Who is online

Users browsing this forum: No registered users and 26 guests