cmake_minimum_required(VERSION 3.3)

project(jssc)
set(CMAKE_BUILD_TYPE Release)

file(GLOB SOURCES "src/cpp/_nix_based/*.cpp")

#Generate the shared library from the sources
add_library(jssc SHARED ${SOURCES})
