Skip to content

Commit ab47899

Browse files
committed
..
1 parent 59fc8df commit ab47899

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

cpp.boost/spirit.v3/CMakeLists.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
cmake_minimum_required(VERSION 3.26)
2+
3+
project(double_list2)
4+
5+
set (CMAKE_CXX_STANDARD 23)
6+
set (CMAKE_EXPORT_COMPILE_COMMANDS ON)
7+
8+
set (SOURCES
9+
double_list2.cpp
10+
)
11+
12+
include_directories (
13+
/usr/local/include
14+
/opt/homebrew/include
15+
${CMAKE_CURRENT_SOURCE_DIR}
16+
)
17+
18+
link_directories (
19+
/usr/local/lib
20+
/opt/homebrew/lib
21+
)
22+
23+
add_executable (double_list2
24+
${SOURCES}
25+
)

0 commit comments

Comments
 (0)