Add install target, rename lib to 'romulus-m'
This commit is contained in:
parent
84aa4d77c6
commit
91bfff1a35
|
@ -5,4 +5,5 @@ set(SRC
|
|||
skinny_reference.c
|
||||
)
|
||||
|
||||
add_library(romulus SHARED ${SRC})
|
||||
add_library(romulus-m SHARED ${SRC})
|
||||
install(TARGETS romulus-m)
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue