You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
350 B
CMake
11 lines
350 B
CMake
|
4 years ago
|
add_library(editor editor.cpp panels/iPanel.cpp panels/mainPanel.cpp)
|
||
|
|
|
||
|
|
target_include_directories(editor
|
||
|
|
PUBLIC "${PROJECT_BINARY_DIR}"
|
||
|
|
PUBLIC ../../
|
||
|
|
PUBLIC ../../internal_libs
|
||
|
|
PUBLIC ../../../external/glm
|
||
|
|
PUBLIC ../../../external/glad/include
|
||
|
|
PUBLIC ../../../external/glfw/include
|
||
|
|
PUBLIC ../../../external/box2d/include
|
||
|
|
)
|