dawn-cmake/CMakeLists.txt
Corentin Wallez fffe6dfa16 Split backend/common in backend/ and common/
This directory used to contain both the state tracking code for the
backends, and the common utilities that could be used both by the
backends and the rest of the code. Things are now:

 - src/common is utility code for the whole repo
 - src/backend contains libNXT's code
 - src/utils is utility code that we don't want in libNXT

This commit also changes all includes to use global paths from src/
bacause it had to touch a bunch of #include statements anyway.
2017-07-06 17:54:52 -04:00

87 lines
2.3 KiB
CMake

# Copyright 2017 The NXT Authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 2.8)
project(nxt C CXX)
function(SetCXX14 Target)
if(MSVC)
set_property(TARGET ${Target} APPEND PROPERTY COMPILE_OPTIONS "/std:c++14")
else()
set_property(TARGET ${Target} APPEND PROPERTY COMPILE_OPTIONS "-std=c++14")
endif()
endfunction()
function(SetPIC Target)
if(MSVC)
else()
set_property(TARGET ${Target} APPEND PROPERTY COMPILE_OPTIONS "-fPIC")
endif()
endfunction()
if (WIN32)
# Define NOMINMAX to prevent conflics between std::min/max and the min/max macros in WinDef.h
add_definitions(-DNOMINMAX)
# Remove compile error where the mock NXT creates too many sections for the old obj format.
add_compile_options("/bigobj")
endif()
add_subdirectory(third_party)
add_subdirectory(generator)
set(INCLUDE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src/include)
Generate(
LIB_NAME nxt
LIB_TYPE STATIC
PRINT_NAME libNXT
COMMAND_LINE_ARGS
${GENERATOR_COMMON_ARGS}
-T nxt
)
target_include_directories(nxt PUBLIC ${GENERATED_DIR})
Generate(
LIB_NAME nxtcpp
LIB_TYPE STATIC
PRINT_NAME libNXT++
COMMAND_LINE_ARGS
${GENERATOR_COMMON_ARGS}
-T nxtcpp
)
target_include_directories(nxtcpp PUBLIC ${GENERATED_DIR} PUBLIC ${INCLUDE_DIR})
target_link_libraries(nxtcpp nxt)
SetCXX14(nxtcpp)
Generate(
LIB_NAME mock_nxt
LIB_TYPE STATIC
PRINT_NAME libMockNXT
COMMAND_LINE_ARGS
${GENERATOR_COMMON_ARGS}
-T mock_nxt
)
target_include_directories(mock_nxt PUBLIC ${GENERATED_DIR})
target_link_libraries(mock_nxt nxt gtest)
SetCXX14(mock_nxt)
set(SRC_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
add_subdirectory(src/common)
add_subdirectory(src/backend)
add_subdirectory(src/wire)
add_subdirectory(src/utils)
add_subdirectory(src/tests)
add_subdirectory(examples)