-Screwed around with SSE2.
-Added ReleaseSSE2 as a build target. -LL_VECTORIZE is silly and breaks things... -Small little tweaks. I have not tested if the cmake alterations work under linux and darwin. Hollar if broken.
This commit is contained in:
@@ -176,7 +176,7 @@ class WindowsManifest(ViewerManifest):
|
||||
super(WindowsManifest, self).construct()
|
||||
# the final exe is complicated because we're not sure where it's coming from,
|
||||
# nor do we have a fixed name for the executable
|
||||
self.path(self.find_existing_file('debug/Ascent.exe', 'release/Ascent.exe', 'relwithdebinfo/Ascent.exe'), dst=self.final_exe())
|
||||
self.path(self.find_existing_file('debug/Ascent.exe', 'release/Ascent.exe', 'releaseSSE2/Ascent.exe', 'relwithdebinfo/Ascent.exe'), dst=self.final_exe())
|
||||
|
||||
# Plugin host application
|
||||
self.path(os.path.join(os.pardir,
|
||||
@@ -270,11 +270,13 @@ class WindowsManifest(ViewerManifest):
|
||||
self.path(src=self.find_existing_file( # tag:"crash-logger" here as a cue to the exporter
|
||||
"../win_crash_logger/debug/windows-crash-logger.exe",
|
||||
"../win_crash_logger/release/windows-crash-logger.exe",
|
||||
"../win_crash_logger/releaseSSE2/windows-crash-logger.exe",
|
||||
"../win_crash_logger/relwithdebinfo/windows-crash-logger.exe"),
|
||||
dst="win_crash_logger.exe")
|
||||
self.path(src=self.find_existing_file(
|
||||
"../win_updater/debug/windows-updater.exe",
|
||||
"../win_updater/release/windows-updater.exe",
|
||||
"../win_updater/releaseSSE2/windows-updater.exe",
|
||||
"../win_updater/relwithdebinfo/windows-updater.exe"),
|
||||
dst="updater.exe")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user