Skip to content

Commit bafa35f

Browse files
Include argparse files in next executable
1 parent e52e504 commit bafa35f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

CMakeLists.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,9 @@ endif()
7777
include_directories(${CMAKE_SOURCE_DIR}/include)
7878
include_directories(${CMAKE_SOURCE_DIR}/src)
7979
file(GLOB SRC_FILES ${CMAKE_SOURCE_DIR}/src/*.cpp)
80+
file(GLOB ARGPARSE_FILES ${CMAKE_SOURCE_DIR}/argparse/*.cpp)
8081

81-
add_executable(next ${SRC_FILES})
82+
add_executable(next ${SRC_FILES} ${ARGPARSE_FILES})
8283

8384
# ============================
8485
# Pre-install OpenMP if needed (Clang/Linux)

0 commit comments

Comments
 (0)