Changeset View
Changeset View
Standalone View
Standalone View
intern/ghost/CMakeLists.txt
| # SPDX-License-Identifier: GPL-2.0-or-later | # SPDX-License-Identifier: GPL-2.0-or-later | ||||
| # Copyright 2006 Blender Foundation. All rights reserved. | # Copyright 2006 Blender Foundation. All rights reserved. | ||||
| set(INC | set(INC | ||||
| . | . | ||||
| ../clog | ../clog | ||||
| ../glew-mx | |||||
| ../../source/blender/blenlib | ../../source/blender/blenlib | ||||
| ../../source/blender/imbuf | ../../source/blender/imbuf | ||||
| ../../source/blender/makesdna | ../../source/blender/makesdna | ||||
| ) | ) | ||||
| set(INC_SYS | set(INC_SYS | ||||
| ${GLEW_INCLUDE_PATH} | ${Epoxy_INCLUDE_DIRS} | ||||
| ) | ) | ||||
| set(SRC | set(SRC | ||||
| intern/GHOST_Buttons.cpp | intern/GHOST_Buttons.cpp | ||||
| intern/GHOST_C-api.cpp | intern/GHOST_C-api.cpp | ||||
| intern/GHOST_CallbackEventConsumer.cpp | intern/GHOST_CallbackEventConsumer.cpp | ||||
| intern/GHOST_Context.cpp | intern/GHOST_Context.cpp | ||||
| intern/GHOST_ContextNone.cpp | intern/GHOST_ContextNone.cpp | ||||
| ▲ Show 20 Lines • Show All 46 Lines • ▼ Show 20 Lines | set(SRC | ||||
| intern/GHOST_Util.h | intern/GHOST_Util.h | ||||
| intern/GHOST_Window.h | intern/GHOST_Window.h | ||||
| intern/GHOST_WindowManager.h | intern/GHOST_WindowManager.h | ||||
| intern/GHOST_utildefines.h | intern/GHOST_utildefines.h | ||||
| intern/GHOST_utildefines_variadic.h | intern/GHOST_utildefines_variadic.h | ||||
| ) | ) | ||||
| set(LIB | set(LIB | ||||
| bf_intern_glew_mx | ${Epoxy_LIBRARIES} | ||||
| ${GLEW_LIBRARY} | |||||
| ) | ) | ||||
| if(WITH_GHOST_DEBUG) | if(WITH_GHOST_DEBUG) | ||||
| list(APPEND SRC | list(APPEND SRC | ||||
| intern/GHOST_EventPrinter.cpp | intern/GHOST_EventPrinter.cpp | ||||
| intern/GHOST_EventPrinter.h | intern/GHOST_EventPrinter.h | ||||
| ) | ) | ||||
| ▲ Show 20 Lines • Show All 483 Lines • Show Last 20 Lines | |||||