Re: [CMake] OPTION variables are not accesible in POST_INSTALL_SCRIPTs

2006-04-12 Thread Brad King
Michael Biebl wrote: I have OPTION(INSTALL_LINKS ... ON) in the toplevel CMakeLists.txt file and want to use that variable in a POST_INSTALL_SCRIPT. Depending on INSTALL_LINKS I want to create additional links. Unfortunately the value of INSTALL_LINKS is not propagated to the POST_INSTALL_SCRIPT

[CMake] OPTION variables are not accesible in POST_INSTALL_SCRIPTs

2006-04-11 Thread Michael Biebl
I have OPTION(INSTALL_LINKS ... ON) in the toplevel CMakeLists.txt file and want to use that variable in a POST_INSTALL_SCRIPT. Depending on INSTALL_LINKS I want to create additional links. Unfortunately the value of INSTALL_LINKS is not propagated to the POST_INSTALL_SCRIPT create_links.cmake. Is