13 lines
227 B
CMake
13 lines
227 B
CMake
cmake_minimum_required(VERSION 3.4.1)
|
|
|
|
add_library(neoterm
|
|
SHARED
|
|
src/main/cpp/neoterm.cpp)
|
|
|
|
target_link_libraries(neoterm)
|
|
|
|
#add_library(nexec
|
|
# SHARED
|
|
# src/main/cpp/exec.c)
|
|
|