/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ #ifndef cmExecutablesCommand_h #define cmExecutablesCommand_h #include "cmConfigure.h" // IWYU pragma: keep #include #include #include "cmCommand.h" class cmExecutionStatus; /** \class cmExecutablesCommand * \brief Defines a list of executables to build. * * cmExecutablesCommand defines a list of executable (i.e., test) * programs to create. */ class cmAddExecutableCommand : public cmCommand { public: /** * This is a virtual constructor for the command. */ cmCommand* Clone() override { return new cmAddExecutableCommand; } /** * This is called when the command is first encountered in * the CMakeLists.txt file. */ bool InitialPass(std::vector const& args, cmExecutionStatus& status) override; }; #endif alue='3.4'>3.4 https://github.com/python/cpython.git
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@redhat.com>2019-02-15 11:34:17 (GMT)
committerGitHub <noreply@github.com>2019-02-15 11:34:17 (GMT)
commit826a8b708165796151ad4135b0ddbd79da6d39f1 (patch)
tree26dcfb75be4721ad4c4058d9f699cda8a901e029
parent2f1a317d5fdc45b9d714b067906f612f636ba08e (diff)
downloadcpython-826a8b708165796151ad4135b0ddbd79da6d39f1.zip
cpython-826a8b708165796151ad4135b0ddbd79da6d39f1.tar.gz
cpython-826a8b708165796151ad4135b0ddbd79da6d39f1.tar.bz2
bpo-35746: Credit Colin Read and Nicolas Edet (GH-11866)
Add credit for the cert parser vulnerability. Mention also Cisco TALOS-2018-0758 identifier.