diff options
author | saturneric <[email protected]> | 2024-07-12 12:53:16 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2024-07-12 12:58:34 +0000 |
commit | 9f61a1f86ca85da52a13a57290db95655cd5740e (patch) | |
tree | 16a5408934cdfb2fa8d59e38c707f374becd31c7 /src/CMakeLists.txt | |
parent | feat: move modules' code out of repo (diff) | |
download | GpgFrontend-9f61a1f86ca85da52a13a57290db95655cd5740e.tar.gz GpgFrontend-9f61a1f86ca85da52a13a57290db95655cd5740e.zip |
feat: improve the project structure
Diffstat (limited to 'src/CMakeLists.txt')
-rw-r--r-- | src/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index d1f51efb..c23f0187 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -77,7 +77,7 @@ set(CMAKE_AUTOUIC_SEARCH_PATHS ${CMAKE_AUTOUIC_SEARCH_PATHS} ${CMAKE_SOURCE_DIR} configure_file(${CMAKE_SOURCE_DIR}/src/GpgFrontend.h.in ${CMAKE_SOURCE_DIR}/src/GpgFrontend.h @ONLY) configure_file(${CMAKE_SOURCE_DIR}/src/GpgFrontendBuildInfo.h.in ${CMAKE_SOURCE_DIR}/src/GpgFrontendBuildInfo.h @ONLY) configure_file(${CMAKE_SOURCE_DIR}/src/GpgFrontendBuildInstallInfo.h.in ${CMAKE_SOURCE_DIR}/src/GpgFrontendBuildInstallInfo.h @ONLY) -configure_file(${CMAKE_SOURCE_DIR}/src/module/sdk/GFSDKBuildInfo.h.in ${CMAKE_SOURCE_DIR}/src/module/sdk/GFSDKBuildInfo.h @ONLY) +configure_file(${CMAKE_SOURCE_DIR}/src/sdk/GFSDKBuildInfo.h.in ${CMAKE_SOURCE_DIR}/src/sdk/GFSDKBuildInfo.h @ONLY) if (APPLE) configure_file(${CMAKE_SOURCE_DIR}/resource/plist/ExportOptions.plist.in ${CMAKE_BINARY_DIR}/ExportOptions.plist @ONLY) endif () @@ -114,7 +114,7 @@ endif () if (BUILD_SDK) message("[+] Build SDK") - add_subdirectory(module) + add_subdirectory(sdk) endif () # build to test gpgfrontend core |