summaryrefslogtreecommitdiffstats
path: root/depends/classparser
diff options
context:
space:
mode:
authorJan Dalheimer <jan@dalheimer.de>2014-04-06 19:43:09 +0200
committerJan Dalheimer <jan@dalheimer.de>2014-04-06 19:43:09 +0200
commitdd7b6642a3b171734126b6b4a14236cfe6406fcf (patch)
tree6afd61aa059371fffc52bd6f3eb6f6b240e5a4e2 /depends/classparser
parent482ad250a4454d993a98488edfe01d7f9dc35de7 (diff)
downloadMultiMC-dd7b6642a3b171734126b6b4a14236cfe6406fcf.tar
MultiMC-dd7b6642a3b171734126b6b4a14236cfe6406fcf.tar.gz
MultiMC-dd7b6642a3b171734126b6b4a14236cfe6406fcf.tar.lz
MultiMC-dd7b6642a3b171734126b6b4a14236cfe6406fcf.tar.xz
MultiMC-dd7b6642a3b171734126b6b4a14236cfe6406fcf.zip
Use the same style of CMake files everywhere
Diffstat (limited to 'depends/classparser')
-rw-r--r--depends/classparser/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/depends/classparser/CMakeLists.txt b/depends/classparser/CMakeLists.txt
index 5a48e002..abae3ef5 100644
--- a/depends/classparser/CMakeLists.txt
+++ b/depends/classparser/CMakeLists.txt
@@ -8,7 +8,7 @@ find_package(Qt5Core REQUIRED)
# Include Qt headers.
include_directories(${Qt5Base_INCLUDE_DIRS})
-SET(CLASSPARSER_HEADERS
+set(CLASSPARSER_HEADERS
include/classparser_config.h
# Public headers
@@ -23,13 +23,13 @@ src/javaendian.h
src/membuffer.h
)
-SET(CLASSPARSER_SOURCES
+set(CLASSPARSER_SOURCES
src/javautils.cpp
src/annotations.cpp
)
# Set the include dir path.
-SET(LIBGROUPVIEW_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include" PARENT_SCOPE)
+set(LIBGROUPVIEW_INCLUDE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/include" PARENT_SCOPE)
# Include self.
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/include)