33 lines
968 B
CMake
33 lines
968 B
CMake
cmake_minimum_required(VERSION 3.15)
|
|
project(GTI320-labos)
|
|
|
|
#--------------------------------------------------
|
|
# Add google test and setup build
|
|
#--------------------------------------------------
|
|
include(FetchContent)
|
|
FetchContent_Declare(
|
|
googletest
|
|
GIT_REPOSITORY https://github.com/google/googletest.git
|
|
GIT_TAG release-1.11.0
|
|
)
|
|
|
|
# For Windows: Prevent overriding the parent project's compiler/linker settings
|
|
set(gtest_force_shared_crt ON CACHE BOOL "" FORCE)
|
|
|
|
# No need for GMock
|
|
set( BUILD_GMOCK OFF CACHE BOOL "" FORCE)
|
|
set( INSTALL_GTEST OFF CACHE BOOL "" FORCE)
|
|
set( GTEST_FORCE_SHARED_CRT ON CACHE BOOL "" FORCE)
|
|
set( GTEST_DISABLE_PTHREADS ON CACHE BOOL "" FORCE)
|
|
FetchContent_MakeAvailable(googletest)
|
|
|
|
set(CMAKE_MODULE_PATH ${PROJECT_SOURCE_DIR}/cmake)
|
|
add_subdirectory(labo01)
|
|
|
|
# TODO add nanogui setup and labo 02 and labo 03
|
|
|
|
if( MSVC )
|
|
set_property(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} PROPERTY VS_STARTUP_PROJECT labo01)
|
|
endif()
|
|
|