Skip to content

Commit

Permalink
#603: UT, BVT Shared, BVT Static targets for CMake. New job for githu…
Browse files Browse the repository at this point in the history
…b actions to test C++ pyclustering build using CMake.
  • Loading branch information
annoviko committed Nov 11, 2020
1 parent 0dca606 commit 41dc459
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions ccore/tst/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#
# @authors Andrei Novikov ([email protected])
# @date 2014-2020
# @copyright GNU Public License
#
# @cond GNU_PUBLIC_LICENSE
# pyclustering is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# pyclustering is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
# @endcond
#


cmake_minimum_required(VERSION 3.10)


# C++ standard
set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED True)


# Sources
file(GLOB_RECURSE UT_SOURCES "*.cpp")


# Header folders
include_directories(${PROJECT_SOURCE_DIR}/include)
include_directories(${PROJECT_SOURCE_DIR}/external/include)


# Library folders
link_directories(${PROJECT_SOURCE_DIR}/build)


# Build targets
add_executable(utcore ${UT_SOURCES})

# Dependecies
add_dependencies(utcore pyclustering-static)
add_dependencies(utcore gtest)
target_link_libraries(utcore PUBLIC pyclustering-static)
target_link_libraries(utcore PUBLIC gtest)

0 comments on commit 41dc459

Please sign in to comment.