Skip to content
This repository has been archived by the owner on Nov 26, 2022. It is now read-only.

Commit

Permalink
Fix non windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
raywan committed May 21, 2019
1 parent 9db834b commit 53cc1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
for filename in fnmatch.filter(filenames, '*.cpp'):
if sys.platform != 'win32' and 'win32_' not in filename:
sources.append(os.path.join(root, filename))
elif filename != 'main.cpp':
elif sys.platform == 'win32' and filename != 'main.cpp':
sources.append(os.path.join(root, filename))


Expand Down

0 comments on commit 53cc1ed

Please sign in to comment.