mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
29 lines
233 B
Plaintext
29 lines
233 B
Plaintext
|
# Suppress sorting based on comment.
|
||
|
|
||
|
# NOSORT
|
||
|
sources = []
|
||
|
|
||
|
# NOSORT
|
||
|
sources = [
|
||
|
"a",
|
||
|
]
|
||
|
|
||
|
# NOSORT
|
||
|
sources += [ "a" ]
|
||
|
|
||
|
# NOSORT
|
||
|
sources = [
|
||
|
"z",
|
||
|
"z2",
|
||
|
"a",
|
||
|
"y.cc",
|
||
|
]
|
||
|
|
||
|
# NOSORT
|
||
|
sources += [
|
||
|
"z",
|
||
|
"z2",
|
||
|
"a",
|
||
|
"y.cc",
|
||
|
]
|