2013/12/5 David Erickson :
> Hi All-
> We would like to use cmake for our build infrastructure, and Eclipse for
> code editing/debugging. I found and read
> (http://www.vtk.org/Wiki/Eclipse_CDT4_Generator) which worked as expected..
> However, what became apparent is that anytime we update our sou
I'm hitting this is on 64-bit Linux (Ubuntu 12.04).
Simple CMakeLists.txt file:
cmake_minimum_required(VERSION 2.8)
project(Blah)
find_package(OpenGL REQUIRED)
message("OPENGL_INCLUDE_DIRS is ${OPENGL_INCLUDE_DIRS}")
message("OPENGL_LIBRARIES is ${OPENGL_LIBRARIES}")
Doing a regular "cm
Hi All-
We would like to use cmake for our build infrastructure, and Eclipse for
code editing/debugging. I found and read
(http://www.vtk.org/Wiki/Eclipse_CDT4_Generator) which worked as
expected.. However, what became apparent is that anytime we update our
source code working tree there is
I'm currently trying to port a rather large, complex project to
Android. It has an existing CMake project so I'm trying to leverage
that. I've taken and enhanced one of the Android-CMake toolchains I've
found.
This particular project I'm porting has unfortunate dependencies on
running the host sys