Brad King wrote:
Use an IMPORTED library.  This is supported in CMake 2.6:

  add_library(xx_lib STATIC IMPORTED)
  set_target_properties(xx_lib PROPERTIES
    IMPORTED_CONFIGURATIONS "DEBUG;RELEASE"
    IMPORTED_LOCATION_GUIDEBUG ${XX_DEBUG}
    IMPORTED_LOCATION_GUIRELEASE ${XX_RELEASE}

Oops, the above two lines should not have "GUI" in them.

-Brad
_______________________________________________
CMake mailing list
CMake@cmake.org
http://www.cmake.org/mailman/listinfo/cmake

Reply via email to