forked from qt-creator/qt-creator
6 lines
100 B
CMake
6 lines
100 B
CMake
|
|
function(my_add_executable targetName)
|
||
|
|
add_executable(${targetName}
|
||
|
|
${ARGN}
|
||
|
|
)
|
||
|
|
endfunction()
|