summaryrefslogtreecommitdiffstats
path: root/Tests/Simple/CMakeLists.txt
blob: 2b2d0d18369ce253c1547e50805050eacd51572a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# 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)