15 lines
202 B
CMake
15 lines
202 B
CMake
cmake_minimum_required(VERSION 2.8.8)
|
|
|
|
add_executable(
|
|
Format
|
|
format.cpp
|
|
)
|
|
|
|
add_executable(
|
|
FileStoreIO
|
|
filestoreio.cpp
|
|
)
|
|
|
|
target_link_libraries(Format WFS)
|
|
target_link_libraries(FileStoreIO WFS)
|