On Wed, Mar 3, 2010 at 1:44 PM, Felipe Sodre dos Santos
<felipe.so...@totvs.com.br> wrote:
> Hello all.
>
>
>
> Im trying to set an include directory which is actually an environment
> variable inside VC++ , $(QTDIR), and thus I tried the following:
>
>
>
> …
>
>
>
> include_directories(
>
>   $(QTDIR)/include
>
> )
>
>
>
> …
>
>
>
>
>
> It comes up that in the resulting SLN file, it translates that directive to
> C:/basedir/$(QTDIR)/include, where basedir is the root directory for the
> project. However, that wouldn’t work since $(QTDIR) is something like
> “C:\Qt”.
>
>

If you need this only for Qt. Why don't you use the proper Qt support in CMake?

FIND_PACKAGE(Qt4 REQUIRED)
INCLUDE(${QT_USE_FILE})

# Use the include path and library for Qt that is used by VTK.
INCLUDE_DIRECTORIES(
  ${QT_INCLUDE_DIR}
 )

John
_______________________________________________
Powered by www.kitware.com

Visit other Kitware open-source projects at 
http://www.kitware.com/opensource/opensource.html

Please keep messages on-topic and check the CMake FAQ at: 
http://www.cmake.org/Wiki/CMake_FAQ

Follow this link to subscribe/unsubscribe:
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to