Skip to content

Commit 7f234f8

Browse files
committed
Update 0.0.64
1 parent 6cb8e87 commit 7f234f8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+315256
-3967
lines changed

CMakeLists.txt

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,7 @@ file(GLOB_RECURSE PROJECT_SOURCES
5353
${CMAKE_CURRENT_SOURCE_DIR}/src/*.h
5454
)
5555
56-
add_executable(idk_core main.cpp ${PROJECT_SOURCES}
57-
src/Editor/Utilities/Selectable.h
58-
src/Editor/Utilities/SelectionEvent.h)
56+
add_executable(idk_core main.cpp ${PROJECT_SOURCES})
5957
6058
link_directories("${PROJECT_SOURCE_DIR}/cmake-build-debug")
6159
@@ -78,7 +76,6 @@ target_link_libraries(DATA
7876
)
7977
8078
set(BOOST_LIBRARY_DIR "${CMAKE_CURRENT_SOURCE_DIR}/external/boost/lib")
81-
8279
set(REQUIRED_DLLS
8380
"C:/msys64/clang64/bin/libclang_rt.asan_dynamic-x86_64.dll"
8481
"C:/msys64/clang64/bin/libc++.dll"
@@ -100,6 +97,8 @@ add_subdirectory(external/boost)
10097
add_subdirectory(external/glm)
10198
add_subdirectory(external/imgui)
10299
add_subdirectory(external/ImGuizmo)
100+
add_subdirectory(external/sqlite3)
101+
add_subdirectory(external/zlib-1.3.1)
103102
104103
target_include_directories(idk_core PRIVATE
105104
${CMAKE_CURRENT_SOURCE_DIR}/external/stb_image
@@ -109,6 +108,7 @@ target_include_directories(idk_core PRIVATE
109108
${CMAKE_CURRENT_SOURCE_DIR}/external/glad/include
110109
${CMAKE_CURRENT_SOURCE_DIR}/external/glfw3/include
111110
${CMAKE_CURRENT_SOURCE_DIR}/external/imguizmo
111+
${CMAKE_CURRENT_SOURCE_DIR}/external/zlib-1.3.1
112112
${IMGUI_PATH}
113113
${CMAKE_CURRENT_SOURCE_DIR}/src/Engine/Core
114114
${CMAKE_CURRENT_SOURCE_DIR}/src/Engine/Rendering
@@ -130,6 +130,7 @@ target_link_libraries(idk_core PRIVATE glad glfw imgui ImGuizmo
130130
OpenGL::GL
131131
DATA
132132
)
133+
include_directories(${CMAKE_SOURCE_DIR}/external/pdf/)
133134
134135
if (WIN32)
135136
target_link_libraries(idk_core PRIVATE

ROOT/materials/mat1.mat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
im a simple material text

0 commit comments

Comments
 (0)