hyporo-cpp/source/creator/CMakeLists.txt
2022-09-22 20:43:06 +05:00

18 lines
258 B
CMake

include_directories(
../hyporo/hyplib/vector
../hyporo/hyplib/scalar
../hyporo/hyplib/integer
../hyporo/hyplib/matrix
)
add_executable(hyporo
# Source files
creator.cpp
)
target_link_libraries(hyporo
PUBLIC
hyporo-hyplib)