Add install target, rename lib to 'romulus-m'

This commit is contained in:
Alex 2022-01-22 17:50:22 +00:00
parent 84aa4d77c6
commit 91bfff1a35
2 changed files with 4 additions and 1 deletions

View File

@ -5,4 +5,5 @@ set(SRC
skinny_reference.c
)
add_library(romulus SHARED ${SRC})
add_library(romulus-m SHARED ${SRC})
install(TARGETS romulus-m)

View File

@ -4,6 +4,8 @@
* This header defines a cross-platform EXPORT macro in order to allow us to
* build this reference implementation as a library.
*/
#pragma once
#ifdef _WIN32
#define EXPORT __declspec(dllexport)
#else