forked from GrandOrgue/grandorgue
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Elimenated clang compilation warnings "argument unused during compila…
…tion" GrandOrgue#2001 (GrandOrgue#2052)
- Loading branch information
Showing
4 changed files
with
20 additions
and
22 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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Copyright 2006 Milan Digital Audio LLC | ||
# Copyright 2009-2024 GrandOrgue contributors (see AUTHORS) | ||
# License GPL-2.0 or later | ||
# (https://www.gnu.org/licenses/old-licenses/gpl-2.0.html). | ||
|
||
include(${CMAKE_SOURCE_DIR}/cmake/AddCXXOption.cmake) | ||
|
||
if(CMAKE_SYSTEM_PROCESSOR STREQUAL "x86_64" OR CMAKE_SYSTEM_PROCESSOR STREQUAL "x86") | ||
add_cxx_option(-mmmx) | ||
add_cxx_option(-msse) | ||
add_cxx_option(-msse2) | ||
add_cxx_option(-msse3) | ||
endif() | ||
|
||
add_cxx_option(-mstackrealign) | ||
|
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