memgraph/tools/CMakeLists.txt
Matej Ferencevic ffbe5b449d Implement version names for each Memgraph version
Summary:
With this diff, each build of Memgraph has a version that uniquely identifies
it. The given version uniquely identifies both official release builds and
development builds. Enterprise/community builds are also differentiated in the
version.  Also, support for custom suffixes is added to support custom builds
for customers.

Reviewers: teon.banek

Reviewed By: teon.banek

Subscribers: pullbot

Differential Revision: https://phabricator.memgraph.io/D2662
2020-02-12 10:05:40 +01:00

12 lines
319 B
CMake

# MemGraph Tools CMake configuration
# You should use the top level CMake configuration with -DTOOLS=ON option set.
project(memgraph_tools)
disallow_in_source_build()
# Everything that is installed here, should be under the "tools" component.
set(CMAKE_INSTALL_DEFAULT_COMPONENT_NAME "tools")
add_subdirectory(src)