summaryrefslogtreecommitdiff
path: root/tests/manual/cmakeprojectmanager/hello-widgets/my_add_executable.cmake
blob: dca664be47b4b6eeb06a7fd510c129455a448bed (plain)
1
2
3
4
5
function(my_add_executable targetName)
  add_executable(${targetName}
    ${ARGN}
  )
endfunction()