Lines Matching refs:libs
156 # cxx_executable_with_flags(name cxx_flags libs srcs...)
160 function(cxx_executable_with_flags name cxx_flags libs)
174 foreach (lib "${libs}")
181 # creates a named target that depends on the given libs and is built
184 function(cxx_executable name dir libs)
186 ${name} "${cxx_default}" "${libs}" "${dir}/${name}.cc" ${ARGN})
192 # cxx_test_with_flags(name cxx_flags libs srcs...)
194 # creates a named C++ test that depends on the given libs and is built
196 function(cxx_test_with_flags name cxx_flags libs)
197 cxx_executable_with_flags(${name} "${cxx_flags}" "${libs}" ${ARGN})
201 # cxx_test(name libs srcs...)
203 # creates a named test target that depends on the given libs and is
206 function(cxx_test name libs)
207 cxx_test_with_flags("${name}" "${cxx_default}" "${libs}"