Skip to content

Commit

Permalink
CMake: Source merging should use a well-defined order for the sources
Browse files Browse the repository at this point in the history
Alphabetically sorted by filename.
  • Loading branch information
skyjake committed Aug 24, 2016
1 parent bed0a62 commit fb9e0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doomsday/cmake/merge_sources.py
Expand Up @@ -8,7 +8,7 @@
code = []

# Read and process all input source files.
for fn in sys.argv[2:]:
for fn in sorted(sys.argv[2:]):
preamble = True
in_body = False
if_level = 0
Expand Down

0 comments on commit fb9e0b7

Please sign in to comment.