File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -O2")
12
12
13
13
# add the binary tree to the search path for include files
14
14
include_directories (${PROJECT_SOURCE_DIR} )
15
+ include_directories (${CMAKE_CURRENT_BINARY_DIR} )
15
16
include_directories (parser-verilog )
16
17
17
18
@@ -44,15 +45,13 @@ add_executable(sample_parser
44
45
${FLEX_verilog_lexer_OUTPUTS}
45
46
${BISON_verilog_parser_OUTPUTS}
46
47
)
47
- target_link_libraries (sample_parser stdc++fs )
48
48
49
49
# A drop-in replacement OpenTimer Verilog parser
50
50
add_executable (ot_parser
51
51
${PROJECT_SOURCE_DIR} /example/ot_parser.cpp
52
52
${FLEX_verilog_lexer_OUTPUTS}
53
53
${BISON_verilog_parser_OUTPUTS}
54
54
)
55
- target_link_libraries (ot_parser stdc++fs )
56
55
57
56
58
57
@@ -68,6 +67,5 @@ set(VP_UTEST_DIR ${PROJECT_SOURCE_DIR}/unittest)
68
67
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${VP_UTEST_DIR} )
69
68
70
69
add_executable (regression unittest/regression.cpp ${FLEX_verilog_lexer_OUTPUTS} ${BISON_verilog_parser_OUTPUTS} )
71
- target_link_libraries (regression stdc++fs )
72
70
add_test (regression ${VP_UTEST_DIR} /regression )
73
71
You can’t perform that action at this time.
0 commit comments