Skip to content

Commit d0cc710

Browse files
committed
Use cmake SHARED rather than MODULE.
1 parent c096029 commit d0cc710

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libaatm/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ target_include_directories(${AATM_LIB} PUBLIC
3939
PRIVATE src
4040
)
4141

42-
# Now define rules for the loadable module / shared library
42+
# Now define rules for the shared library
4343

44-
add_library(${AATM_MOD} MODULE ATM.cpp)
44+
add_library(${AATM_MOD} SHARED ATM.cpp)
4545

4646
target_link_libraries(${AATM_MOD} PRIVATE ${AATM_LIB})
4747

0 commit comments

Comments
 (0)