Skip to content

Commit

Permalink
Use cmake SHARED rather than MODULE.
Browse files Browse the repository at this point in the history
  • Loading branch information
tskisner committed Nov 2, 2019
1 parent c096029 commit d0cc710
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libaatm/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ target_include_directories(${AATM_LIB} PUBLIC
PRIVATE src
)

# Now define rules for the loadable module / shared library
# Now define rules for the shared library

add_library(${AATM_MOD} MODULE ATM.cpp)
add_library(${AATM_MOD} SHARED ATM.cpp)

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

Expand Down

0 comments on commit d0cc710

Please sign in to comment.