-
Notifications
You must be signed in to change notification settings - Fork 269
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Need to build with a Debian/Ubuntu CMake to be able to build .deb packages using lib/<triplet> as library path in the GNUInstallDirs module.
- Loading branch information
1 parent
e1a93ad
commit 88c3578
Showing
2 changed files
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
add_library(cli_commands OBJECT Command.h CommandFactory.cpp CommandFactory.h IntegrateCommand.cpp IntegrateCommand.h UnintegrateCommand.h UnintegrateCommand.cpp exceptions.h) | ||
add_library(cli_commands STATIC Command.h CommandFactory.cpp CommandFactory.h IntegrateCommand.cpp IntegrateCommand.h UnintegrateCommand.h UnintegrateCommand.cpp exceptions.h) | ||
target_link_libraries(cli_commands PUBLIC Qt5::Core shared cli_logging) | ||
target_include_directories(cli_commands PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
add_library(filesystemwatcher OBJECT filesystemwatcher.cpp filesystemwatcher.h) | ||
add_library(filesystemwatcher STATIC filesystemwatcher.cpp filesystemwatcher.h) | ||
target_link_libraries(filesystemwatcher PUBLIC Qt5::Core shared) | ||
target_include_directories(filesystemwatcher PUBLIC ${CMAKE_CURRENT_SOURCE_DIR}) |