use lowercase for cmake builtin names and macros, remove contents in else() and endif() which is no longer needed.
This commit is contained in:
@@ -24,13 +24,13 @@
|
||||
#
|
||||
# ***** END GPL LICENSE BLOCK *****
|
||||
|
||||
ADD_SUBDIRECTORY(blender)
|
||||
add_subdirectory(blender)
|
||||
|
||||
IF(WITH_GAMEENGINE)
|
||||
ADD_SUBDIRECTORY(kernel)
|
||||
ADD_SUBDIRECTORY(gameengine)
|
||||
ENDIF(WITH_GAMEENGINE)
|
||||
if(WITH_GAMEENGINE)
|
||||
add_subdirectory(kernel)
|
||||
add_subdirectory(gameengine)
|
||||
endif()
|
||||
|
||||
IF(WINDOWS)
|
||||
ADD_SUBDIRECTORY(icons)
|
||||
ENDIF(WINDOWS)
|
||||
if(WINDOWS)
|
||||
add_subdirectory(icons)
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user