mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
38 lines
787 B
CMake
38 lines
787 B
CMake
|
cmake_minimum_required(VERSION 3.8)
|
||
|
|
||
|
project(chatterino)
|
||
|
|
||
|
include_directories(src)
|
||
|
|
||
|
set(chatterino_SOURCES
|
||
|
src/common/UsernameSet.cpp
|
||
|
)
|
||
|
|
||
|
find_package(Qt5Widgets CONFIG REQUIRED)
|
||
|
find_package(Qt5 5.9.0 REQUIRED COMPONENTS
|
||
|
Core
|
||
|
)
|
||
|
|
||
|
# set(CMAKE_AUTOMOC ON)
|
||
|
|
||
|
if (BUILD_TESTS)
|
||
|
message("++ Tests enabled")
|
||
|
find_package(GTest)
|
||
|
enable_testing()
|
||
|
|
||
|
add_executable(chatterino-test
|
||
|
${chatterino_SOURCES}
|
||
|
|
||
|
tests/src/main.cpp
|
||
|
tests/src/UsernameSet.cpp
|
||
|
)
|
||
|
|
||
|
target_link_libraries(chatterino-test Qt5::Core)
|
||
|
|
||
|
target_link_libraries(chatterino-test gtest gtest_main)
|
||
|
|
||
|
gtest_discover_tests(chatterino-test)
|
||
|
else()
|
||
|
message(FATAL_ERROR "This cmake file is only intended for tests right now. Use qmake to build chatterino2")
|
||
|
endif()
|