diff options
| author | 2014-05-19 15:19:36 -0700 | |
|---|---|---|
| committer | 2014-05-19 15:19:36 -0700 | |
| commit | 403e4bf837c47c7e10dc006fafffea8c160c890f (patch) | |
| tree | 40e17e39c19fbedd6903d4985950c23d785b27b7 /src/common | |
| parent | Indent fixes (diff) | |
| download | yuzu-403e4bf837c47c7e10dc006fafffea8c160c890f.tar.gz yuzu-403e4bf837c47c7e10dc006fafffea8c160c890f.tar.xz yuzu-403e4bf837c47c7e10dc006fafffea8c160c890f.zip | |
CMakeLists: rename HEADS, improved comments
Changes for clarity of comments, removed redundant compiler flags.
Diffstat (limited to '')
| -rw-r--r-- | src/common/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 0027ae2b0..aae183393 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt | |||
| @@ -19,7 +19,7 @@ set(SRCS break_points.cpp | |||
| 19 | timer.cpp | 19 | timer.cpp |
| 20 | utf8.cpp) | 20 | utf8.cpp) |
| 21 | 21 | ||
| 22 | set(HEADS atomic.h | 22 | set(HEADERS atomic.h |
| 23 | atomic_gcc.h | 23 | atomic_gcc.h |
| 24 | atomic_win32.h | 24 | atomic_win32.h |
| 25 | bit_field.h | 25 | bit_field.h |
| @@ -58,4 +58,4 @@ set(HEADS atomic.h | |||
| 58 | timer.h | 58 | timer.h |
| 59 | utf8.h) | 59 | utf8.h) |
| 60 | 60 | ||
| 61 | add_library(common STATIC ${SRCS} ${HEADS}) | 61 | add_library(common STATIC ${SRCS} ${HEADERS}) |