blob: 65c04413fab880aea77bc29fadfa6946892ff80f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#===------------------------------------------------------------------------===#
#
# The KLEE Symbolic Virtual Machine
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
#===------------------------------------------------------------------------===#
function(string_to_list s output_var)
string(REPLACE " " ";" _output "${s}")
set(${output_var} ${_output} PARENT_SCOPE)
endfunction()
|