File: AddTAExecutable.cmake

package info (click to toggle)
tiledarray 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 9,568 kB
  • sloc: cpp: 53,449; javascript: 1,599; sh: 393; ansic: 226; python: 223; xml: 195; makefile: 36
file content (6 lines) | stat: -rw-r--r-- 180 bytes parent folder | download
1
2
3
4
5
6
macro(add_ta_executable _name _source_files _libs)

  add_executable(${_name} EXCLUDE_FROM_ALL "${_source_files}")
  target_link_libraries(${_name} PRIVATE "${_libs}")

endmacro()