Erste Version
This commit is contained in:
26
src/editor/CMakeLists.txt
Normal file
26
src/editor/CMakeLists.txt
Normal file
@@ -0,0 +1,26 @@
|
||||
set(EDITOR_SOURCES
|
||||
EditorPanel.cpp
|
||||
EditorPanel.h
|
||||
CodeEditor.cpp
|
||||
CodeEditor.h
|
||||
LineNumberArea.cpp
|
||||
LineNumberArea.h
|
||||
EditorTab.cpp
|
||||
EditorTab.h
|
||||
SearchPanel.cpp
|
||||
SearchPanel.h
|
||||
)
|
||||
|
||||
add_library(BareCode_Editor STATIC ${EDITOR_SOURCES})
|
||||
|
||||
target_link_libraries(BareCode_Editor PUBLIC
|
||||
Qt6::Core
|
||||
Qt6::Gui
|
||||
Qt6::Widgets
|
||||
BareCode_Highlighter
|
||||
)
|
||||
|
||||
target_include_directories(BareCode_Editor PUBLIC
|
||||
${CMAKE_CURRENT_SOURCE_DIR}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/..
|
||||
)
|
||||
Reference in New Issue
Block a user