I would like to be able to pass arguments to my generated Makefile.

Suppose I use an environment variable like this:

add_custom_target(run_dev_script
  COMMAND ${PYTHON_EXECUTABLE} ${PREREQUISITE}
  COMMAND ${PYTHON_EXECUTABLE} ${SCRIPT}
  )

Would that actually work?
In theory ${SCRIPT} is substituted at cmake time, so I have the impression that it wouldn't work.. I don't find anything useful in cmake -E however, that would allow me to do something at make time.
Any suggestions?
--

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