-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update gitignore for mingw files build std::thread stuff only if supported by gcc fix timer build on mingw don't use wingl header for now find and copy missing dlls with wine fix cmake for mingw change setters in directionnode. avoid mingw bug fix qtopengl build fix mingw warnings
- Loading branch information
Showing
12 changed files
with
89 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,7 @@ include/GL/ | |
test/ | ||
liblub.cbp | ||
*.cxx | ||
*.cxx_parameters | ||
*~ | ||
*CMakeFiles/ | ||
*Makefile | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#!/usr/bin/python | ||
|
||
import subprocess, os | ||
|
||
from shutil import copyfile | ||
|
||
dlls = [] | ||
|
||
process = subprocess.Popen(['wine', 'bin/liblub-editor.exe'], shell=False, stderr=subprocess.PIPE) | ||
|
||
words = process.communicate()[1].split() | ||
uniqueWords = list(set(words)) | ||
for word in uniqueWords: | ||
lineStr = str(word, encoding='utf8') | ||
if ".dll" in lineStr: | ||
if lineStr.endswith(".dll"): | ||
dlls.append(lineStr.replace(".dll", "")) | ||
|
||
print (dlls) | ||
|
||
for dll in dlls: | ||
locations = os.popen("find /usr/i486-mingw32/ | grep %s | grep dll" % dll).readlines() | ||
dllSource = locations[0].strip() | ||
copyfile(dllSource, 'bin/%s.dll' % dll) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters