Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
34c0c7754ffdbc03b94de64f55eb046b9bbaec0d
/
.
/
Tests
/
PreOrder
/
CMakeLists.txt
blob: 1fcdf66979b9b680968d48c22d334bddb132f5b2 [
file
]
cmake_minimum_required(VERSION 3.10)
# a simple test case
project (PreOrder)
set(CMAKE_IGNORE_DEPENDENCIES_ORDERING 1)
add_subdirectory(Library)
add_executable (PreOrder simple.cxx)
target_link_libraries(PreOrder simpleLib)