mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-05 05:39:57 -05:00
ENH: now target names can be used in add_custom_command() and
add_custom_target() as COMMAND, and cmake will recognize them and replace them with the actual output path of these executables. Also the dependency will be added automatically. Test included. ENH: moved TraceVSDependencies() to the end of GlobalGenerator::Configure(), so it is done now in one central place Alex
This commit is contained in:
@@ -69,8 +69,8 @@ public:
|
||||
void SetEscapeAllowMakeVars(bool b);
|
||||
|
||||
/** set get the used status of the command */
|
||||
void SetUsed() { this->Used = true;};
|
||||
bool IsUsed() { return this->Used;};
|
||||
void SetUsed() { this->Used = true;}
|
||||
bool IsUsed() const { return this->Used;}
|
||||
|
||||
private:
|
||||
std::vector<std::string> Outputs;
|
||||
|
||||
Reference in New Issue
Block a user