diff options
author | kaiwu <kaiwu2004@gmail.com> | 2022-03-14 16:23:06 +0800 |
---|---|---|
committer | kaiwu <kaiwu2004@gmail.com> | 2022-03-14 16:23:06 +0800 |
commit | 644663969201ced8e32fe56c7d1fd712d2fa1330 (patch) | |
tree | 7d7c7dea61284622f31ca5bd1303d796ad207418 /test | |
parent | 12feee12ba92c3f47ab80bf4ebe96f51dfbc599a (diff) | |
download | advent-of-code-644663969201ced8e32fe56c7d1fd712d2fa1330.tar.gz advent-of-code-644663969201ced8e32fe56c7d1fd712d2fa1330.zip |
day1
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index cce5378..8b4c564 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -5,6 +5,7 @@ set(TEST_FILES add_executable(aoc ${TEST_FILES}) target_include_directories(aoc PRIVATE ${PROJECT_SOURCE_DIR}/include) +target_link_libraries(aoc PRIVATE common solution) add_test(NAME test_aoc COMMAND aoc) |