diff options
author | Betsy McPhail <betsy.mcphail@kitware.com> | 2019-07-02 00:58:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-19 15:49:05 (GMT) |
commit | 49ce4d6ff4e70026ab1da6da91d7965ef61863ab (patch) | |
tree | d519e2a2f16f1ebc0ae447e5b98860403f42bc39 /Help/guide/tutorial/Step7 | |
parent | 82332f81bbb0609bf521d29c36b3ecf1566be892 (diff) | |
download | CMake-49ce4d6ff4e70026ab1da6da91d7965ef61863ab.zip CMake-49ce4d6ff4e70026ab1da6da91d7965ef61863ab.tar.gz CMake-49ce4d6ff4e70026ab1da6da91d7965ef61863ab.tar.bz2 |
Tutorial: Improve Step 2
* Fix typo in #include
* Remove CMakeLists file that users should create
* Clarify which files users are expected to create
* Highlight the importance of configuring TutorialConfig.h.in after
the MY_MATH option has been set
Diffstat (limited to 'Help/guide/tutorial/Step7')
-rw-r--r-- | Help/guide/tutorial/Step7/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Help/guide/tutorial/Step7/CMakeLists.txt b/Help/guide/tutorial/Step7/CMakeLists.txt index b251aaf..d1c0d1f 100644 --- a/Help/guide/tutorial/Step7/CMakeLists.txt +++ b/Help/guide/tutorial/Step7/CMakeLists.txt @@ -20,7 +20,7 @@ option(USE_MYMATH "Use tutorial provided math implementation" ON) # to the source code configure_file(TutorialConfig.h.in TutorialConfig.h) -# add the MathFunctions library? +# add the MathFunctions library if(USE_MYMATH) add_subdirectory(MathFunctions) list(APPEND EXTRA_LIBS MathFunctions) |