Lines Matching refs:libs
139 # cxx_executable_with_flags(name cxx_flags libs srcs...)
143 function(cxx_executable_with_flags name cxx_flags libs)
157 foreach (lib "${libs}")
164 # creates a named target that depends on the given libs and is built
167 function(cxx_executable name dir libs)
169 ${name} "${cxx_default}" "${libs}" "${dir}/${name}.cc" ${ARGN})
175 # cxx_test_with_flags(name cxx_flags libs srcs...)
177 # creates a named C++ test that depends on the given libs and is built
179 function(cxx_test_with_flags name cxx_flags libs)
180 cxx_executable_with_flags(${name} "${cxx_flags}" "${libs}" ${ARGN})
184 # cxx_test(name libs srcs...)
186 # creates a named test target that depends on the given libs and is
189 function(cxx_test name libs)
190 cxx_test_with_flags("${name}" "${cxx_default}" "${libs}"