diff options
author | crupest <crupest@outlook.com> | 2022-05-15 13:35:50 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-05-15 13:35:50 +0800 |
commit | 2145308fff868b3b0c234d242db4c47ff9607fa3 (patch) | |
tree | 4dbe08dcdc9f15b81588e563981323e898dd2a9f /src/platform/bootstrap | |
parent | 4cdfef9bb8a25891fd8283efd0ce18c69435aff0 (diff) | |
download | cru-2145308fff868b3b0c234d242db4c47ff9607fa3.tar.gz cru-2145308fff868b3b0c234d242db4c47ff9607fa3.tar.bz2 cru-2145308fff868b3b0c234d242db4c47ff9607fa3.zip |
...
Diffstat (limited to 'src/platform/bootstrap')
-rw-r--r-- | src/platform/bootstrap/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/platform/bootstrap/CMakeLists.txt b/src/platform/bootstrap/CMakeLists.txt index 6df73f38..f5d79cca 100644 --- a/src/platform/bootstrap/CMakeLists.txt +++ b/src/platform/bootstrap/CMakeLists.txt @@ -1,13 +1,13 @@ -add_library(cru_platform_bootstrap SHARED +add_library(CruPlatformBootstrap SHARED Bootstrap.cpp ) if(WIN32) - target_link_libraries(cru_platform_bootstrap PUBLIC cru_win_gui) + target_link_libraries(CruPlatformBootstrap PUBLIC CruPlatformGuiWin) elseif(APPLE) - target_link_libraries(cru_platform_bootstrap PUBLIC cru_osx_gui) + target_link_libraries(CruPlatformBootstrap PUBLIC CruPlatformGuiOsx) else() - target_link_libraries(cru_platform_bootstrap PUBLIC cru_platform_graphics_cairo) + target_link_libraries(CruPlatformBootstrap PUBLIC CruPlatformGraphicsCairo) endif() -target_compile_definitions(cru_platform_bootstrap PRIVATE CRU_PLATFORM_BOOTSTRAP_EXPORT_API) +target_compile_definitions(CruPlatformBootstrap PRIVATE CRU_PLATFORM_BOOTSTRAP_EXPORT_API) |