mirror of
1
0
Fork 0

Merge branch 'patch-1' into 'master'

Fix typo

See merge request CLIUtils/modern-cmake!33
This commit is contained in:
Henry Schreiner 2020-06-09 15:04:16 +00:00
commit d5aaa10165
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ endif()
## Running a command at build time
Build time commands are a bit tricker. The main complication comes from the target system; when do you want your command to run? Does it produce an output that another target needs? With this in mind, here is an example that calls a Python script to generate a header file:
Build time commands are a bit trickier. The main complication comes from the target system; when do you want your command to run? Does it produce an output that another target needs? With this in mind, here is an example that calls a Python script to generate a header file:
```cmake
find_package(PythonInterp REQUIRED)