Search found 3 matches
- Sat Jan 23, 2016 13:55
- Forum: Help
- Topic: Trying to set up a sample project with cmake
- Replies: 4
- Views: 6131
Re: Trying to set up a sample project with cmake
Yes, sorry. There it is: build/cegui/include/CEGUI/Config.h This is how I got it to work: cmake_minimum_required(VERSION 2.8) project(cegui_test) add_subdirectory("externals/cegui") include_directories("${CMAKE_SOURCE_DIR}/externals/cegui/cegui/include") include_directories("...
- Sun Jan 17, 2016 17:21
- Forum: Help
- Topic: Trying to set up a sample project with cmake
- Replies: 4
- Views: 6131
Re: Trying to set up a sample project with cmake
There is a file called "Config.h.in". Should I rename it or something?
- Tue Jan 12, 2016 11:30
- Forum: Help
- Topic: Trying to set up a sample project with cmake
- Replies: 4
- Views: 6131
Trying to set up a sample project with cmake
Hi. I am using linux and I have read this guide: http://cegui.org.uk/wiki/Building_from_source . However, I don't want to install it. I just want to include the headers and link against the generated libraries. First of all, I have created this directory structure: my_proj |-- build |-- CMakeLists.t...