File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ CTestCostData.txt
1919CTestTestfile.cmake
2020install_manifest.txt
2121LastTest.log
22+ lib * .a
2223lib * .so
2324Makefile
2425schemagen
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ if(WIN32)
99 SET (CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS TRUE )
1010endif ()
1111
12- add_library (graphqlservice SHARED GraphQLService.cpp Introspection.cpp IntrospectionSchema.cpp)
12+ add_library (graphqlservice GraphQLService.cpp Introspection.cpp IntrospectionSchema.cpp)
1313add_executable (schemagen SchemaGenerator.cpp)
1414
1515find_library (GRAPHQLPARSER graphqlparser)
@@ -50,7 +50,7 @@ if(BUILD_TESTS OR UPDATE_SAMPLES)
5050 )
5151
5252 if (BUILD_TESTS)
53- add_library (todaygraphql SHARED
53+ add_library (todaygraphql
5454 TodaySchema.cpp
5555 Today.cpp)
5656
@@ -99,6 +99,7 @@ endif()
9999install (TARGETS graphqlservice schemagen
100100 EXPORT cppgraphqlgen-config
101101 RUNTIME DESTINATION bin
102+ ARCHIVE DESTINATION lib
102103 LIBRARY DESTINATION lib)
103104
104105install (FILES GraphQLService.h Introspection.h IntrospectionSchema.h
You can’t perform that action at this time.
0 commit comments