cmake: Add header files in CMakeLists.txt.

So the Xcode IDE can list and search them.
This commit is contained in:
joevt
2023-08-15 15:18:36 -07:00
committed by dingusdev
parent 744c0d39b5
commit 1b2d3d0e6e
+2 -1
View File
@@ -2,6 +2,7 @@ include_directories("${PROJECT_SOURCE_DIR}"
"${PROJECT_SOURCE_DIR}/thirdparty/loguru/"
"${PROJECT_SOURCE_DIR}/thirdparty/capstone/include")
file(GLOB SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp")
file(GLOB SOURCES "${CMAKE_CURRENT_SOURCE_DIR}/*.cpp"
"${CMAKE_CURRENT_SOURCE_DIR}/*.h")
add_library(debugger OBJECT ${SOURCES})