9 lines
146 B
CMake
9 lines
146 B
CMake
|
set(SOURCES
|
||
|
main.cpp
|
||
|
)
|
||
|
|
||
|
add_executable(test-mmap-shared ${SOURCES})
|
||
|
banan_link_library(test-mmap-shared libc)
|
||
|
|
||
|
install(TARGETS test-mmap-shared)
|