Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules-local/fast-library/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ target_link_libraries(openfast_prelib
orcaflexlib
extptfm_mckflib
openfoamtypeslib
sctypeslib
feamlib
moordynlib
icedynlib
Expand Down
14 changes: 7 additions & 7 deletions modules-local/supercontroller/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@

generate_f90_types(src/SuperController_Registry.txt SuperController_Types.f90 -ccode)

add_library(scfastlib
src/SuperController.f90
add_library(sctypeslib
SuperController_Types.f90)
target_link_libraries(sctypeslib nwtclibs)

# Autogenerated files
SuperController_Types.f90
)
target_link_libraries(scfastlib openfast_prelib nwtclibs)
add_library(scfastlib
src/SuperController.f90)
target_link_libraries(scfastlib sctypeslib openfast_prelib nwtclibs)

install(TARGETS scfastlib
install(TARGETS sctypeslib scfastlib
RUNTIME DESTINATION bin
LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib)
Expand Down