hyporo-cpp/source/creator/CMakeLists.txt
2022-11-18 21:50:49 +05:00

23 lines
299 B
CMake

include_directories(
../hyporo/hyplib
../hyporo/window_system
../hyporo/gpu
../hyporo/hmesh
)
add_executable(hyporo
# Source files
creator.cpp
)
target_link_libraries(hyporo
PUBLIC
hyporo-hyplib
hyporo-window-system
hyporo-gpu
hyporo-mesh
imgui
)