mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-24 17:18:37 -05:00
8 lines
224 B
CMake
8 lines
224 B
CMake
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)
|