We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc8877f commit c6ea1aeCopy full SHA for c6ea1ae
Test/CMakeLists.txt
@@ -3,7 +3,7 @@ project(testlib VERSION 1.0
3
LANGUAGES CXX)
4
5
# Define sources
6
-set(dependencies ${PROJECT_SOURCE_DIR}/example/test.cpp)
+set(dependencies example/test.cpp)
7
8
set(libraries middleware
9
data
@@ -12,7 +12,7 @@ set(libraries middleware
12
Threads::Threads) #so pthreads work
13
14
# Configure tests library
15
-add_library(tests ${dependecies})
+add_library(tests ${dependencies})
16
target_link_libraries(tests PRIVATE ${libraries})
17
18
# Run Autocoder
0 commit comments