CMakeLists: rename HEADS, improved comments

Changes for clarity of comments, removed redundant compiler flags.
This commit is contained in:
archshift 2014-05-19 15:19:36 -07:00
parent 71b8789803
commit 403e4bf837
6 changed files with 12 additions and 13 deletions

View file

@ -1,6 +1,6 @@
set(SRCS citra.cpp
emu_window/emu_window_glfw.cpp)
set(HEADS citra.h
set(HEADERS citra.h
resource.h)
# NOTE: This is a workaround for CMake bug 0006976 (missing X11_xf86vmode_LIB variable)
@ -8,7 +8,7 @@ if (NOT X11_xf86vmode_LIB)
set(X11_xv86vmode_LIB Xxf86vm)
endif()
add_executable(citra ${SRCS} ${HEADS})
add_executable(citra ${SRCS} ${HEADERS})
if (APPLE)
target_link_libraries(citra core common video_core iconv pthread ${COREFOUNDATION_LIBRARY} ${OPENGL_LIBRARIES} ${GLEW_LIBRARY} ${GLFW_LIBRARIES})