8 lines
199 B
CMake
8 lines
199 B
CMake
|
|
file(GLOB sources "*.cpp")
|
|
|
|
foreach(source ${sources})
|
|
get_filename_component(exec ${source} NAME_WE)
|
|
add_executable(${exec} ${source})
|
|
target_link_libraries(${exec} common ${libs})
|
|
endforeach()
|