If you use "${CMAKE_CFG_INTDIR}" in a custom command it should show up as $(Config) in the generated VS vcproj files...<div><br></div><div>Does this do what you want?<br>add_custom_command(${OUTPUT_FILE}<br> COMMAND ${CMAKE_COMMAND} ARGS -DCONFIG:STRING=${CMAKE_CFG_INTDIR} -P "${my_custom_script}"<br>
)<br><div class="gmail_quote"><br></div><div class="gmail_quote">For makefile based systems, ${CMAKE_CFG_INTDIR} should evaluate to "." -- you should be able to use that as a per-configuration directory name in path expressions.</div>
<div class="gmail_quote"><br></div><div class="gmail_quote"><br></div><div class="gmail_quote">HTH,</div><div class="gmail_quote">David</div><div class="gmail_quote"><br></div><div class="gmail_quote"><br></div><div class="gmail_quote">
On Thu, May 14, 2009 at 5:59 PM, James Bigler <span dir="ltr"><<a href="mailto:jamesbigler@gmail.com">jamesbigler@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
Is there a configuration environment variable for VS that I could use to change the behavior of an add_custom_command based on whether I'm building a debug or release build?<br><br>I want something like this:<br><br>add_custom_command(${OUTPUT_FILE}<br>
COMMAND ${CMAKE_COMMAND} ARGS "$(Config)" -P "${my_custom_script}"<br> )<br><br>Thanks,<br><font color="#888888">James<br>
</font><br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the CMake FAQ at: <a href="http://www.cmake.org/Wiki/CMake_FAQ" target="_blank">http://www.cmake.org/Wiki/CMake_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.cmake.org/mailman/listinfo/cmake" target="_blank">http://www.cmake.org/mailman/listinfo/cmake</a><br></blockquote></div><br></div>