6 lines
111 B
CMake
6 lines
111 B
CMake
file(GLOB_RECURSE CPPS ./*.cpp )
|
|
|
|
add_executable(calculator ${CPPS})
|
|
|
|
target_link_libraries(calculator nodes)
|