Skip to content

Commit 3cf3534

Browse files
committed
Fix FileNotFoundError: for print_info.c.in
I had misunderstood what `.resolve()` does
1 parent 7389d76 commit 3cf3534

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

chapter-06/recipe-02/fortran-c-example/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ vars_dict = {
5757
'CMAKE_Fortran_COMPILER': '${CMAKE_Fortran_COMPILER}',
5858
'CMAKE_C_COMPILER': '${CMAKE_C_COMPILER}',
5959
}
60-
configure_file(input_file.resolve(), output_file.resolve(), vars_dict)
60+
configure_file(input_file, output_file, vars_dict)
6161
")
6262

6363
find_package(PythonInterp QUIET REQUIRED)

chapter-12/recipe-03/cxx-example/docs/Doxyfile.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ OPTIMIZE_FOR_FORTRAN = NO
4545
OPTIMIZE_OUTPUT_VHDL = NO
4646
EXTENSION_MAPPING =
4747
MARKDOWN_SUPPORT = YES
48-
TOC_INCLUDE_HEADINGS = 0
4948
AUTOLINK_SUPPORT = YES
5049
BUILTIN_STL_SUPPORT = NO
5150
CPP_CLI_SUPPORT = NO
@@ -206,7 +205,6 @@ HTML_COLORSTYLE_HUE = 220
206205
HTML_COLORSTYLE_SAT = 100
207206
HTML_COLORSTYLE_GAMMA = 80
208207
HTML_TIMESTAMP = NO
209-
HTML_DYNAMIC_MENUS = YES
210208
HTML_DYNAMIC_SECTIONS = NO
211209
HTML_INDEX_NUM_ENTRIES = 100
212210
GENERATE_DOCSET = NO
@@ -364,7 +362,6 @@ DOTFILE_DIRS =
364362
MSCFILE_DIRS =
365363
DIAFILE_DIRS =
366364
PLANTUML_JAR_PATH =
367-
PLANTUML_CFG_FILE =
368365
PLANTUML_INCLUDE_PATH =
369366
DOT_GRAPH_MAX_NODES = 50
370367
MAX_DOT_GRAPH_DEPTH = 0

0 commit comments

Comments
 (0)