hyporo-cpp/source/creator/CMakeLists.txt

23 lines
299 B
CMake
Raw Normal View History

2022-09-22 20:43:06 +05:00
include_directories(
2022-11-18 21:50:49 +05:00
../hyporo/hyplib
../hyporo/window_system
../hyporo/gpu
../hyporo/hmesh
2022-09-22 20:43:06 +05:00
)
add_executable(hyporo
# Source files
creator.cpp
)
target_link_libraries(hyporo
PUBLIC
2022-11-18 21:50:49 +05:00
hyporo-hyplib
hyporo-window-system
2022-10-28 21:16:03 +05:00
hyporo-gpu
2022-11-18 21:50:49 +05:00
hyporo-mesh
imgui
)