mirror of
https://github.com/reactos/CMake.git
synced 2024-12-03 17:11:04 +00:00
13 lines
200 B
CMake
13 lines
200 B
CMake
# a simple test case
|
|
project (Simple)
|
|
|
|
add_executable (simple simple.cxx)
|
|
|
|
add_library (simpleLib STATIC
|
|
simpleLib.cxx
|
|
simpleCLib.c
|
|
simpleWe.cpp
|
|
)
|
|
|
|
target_link_libraries (simple simpleLib)
|