mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 15:19:51 -05:00
7 lines
183 B
CMake
7 lines
183 B
CMake
# a simple test case
|
|
PROJECT (PreOrder)
|
|
SET(CMAKE_IGNORE_DEPENDENCIES_ORDERING 1)
|
|
SUBDIRS(PREORDER Library)
|
|
ADD_EXECUTABLE (simple simple.cxx)
|
|
TARGET_LINK_LIBRARIES(simple simpleLib)
|