cmake_minimum_required(VERSION 3.2)
# Name of the library does not reflect name of the namespace (external_platforms_fundamentals),
# this is due to hitting directory max characters on Windows platform with such a long namespace.
project(ep-fundamentals)

addProjectIncludeDirectory()
setUpProject(library)

target_link_libraries(${PROJECT_NAME} PRIVATE ${GalaxyServiceLibraryDeps})
target_link_libraries(${PROJECT_NAME} PUBLIC Qt5::Core)

target_link_libraries(${PROJECT_NAME} PUBLIC error-handling)
target_link_libraries(${PROJECT_NAME} PUBLIC fundamentals)
target_link_libraries(${PROJECT_NAME} PUBLIC sql-fundamentals)
target_link_libraries(${PROJECT_NAME} PUBLIC web-fundamentals)
