forked from telegramdesktop/tdesktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial Windows Debug build with cmake.
- Loading branch information
1 parent
85060cd
commit 61723bd
Showing
20 changed files
with
201 additions
and
36 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
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
Submodule libtgvoip
updated
2 files
+172 −4 | libtgvoip_osx.xcodeproj/project.pbxproj | |
+5 −5 | os/windows/NetworkSocketWinsock.cpp |
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
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
Submodule lib_storage
updated
7 files
+52 −0 | CMakeLists.txt | |
+0 −5 | lib_storage.gyp | |
+5 −5 | storage/storage_encrypted_file.cpp | |
+2 −2 | storage/storage_encrypted_file.h | |
+0 −37 | storage/storage_file_lock.h | |
+0 −123 | storage/storage_file_lock_posix.cpp | |
+0 −132 | storage/storage_file_lock_win.cpp |
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
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
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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
add_library(external_auto_updates INTERFACE IMPORTED GLOBAL) | ||
|
||
if (WIN32) | ||
add_subdirectory(lzma) | ||
target_link_libraries(external_auto_updates | ||
INTERFACE | ||
external_lzma | ||
) | ||
else() | ||
add_subdirectory(xz) | ||
target_link_libraries(external_auto_updates | ||
INTERFACE | ||
external_xz | ||
) | ||
endif() |
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
add_library(external_lzma INTERFACE IMPORTED GLOBAL) | ||
|
||
target_include_directories(external_lzma SYSTEM | ||
INTERFACE | ||
${libs_loc}/lzma/C | ||
) | ||
|
||
target_link_directories(external_lzma | ||
INTERFACE | ||
${libs_loc}/lzma/C/Util/LzmaLib/$<IF:$<CONFIG:Debug>,Debug,Release> | ||
) | ||
|
||
target_link_libraries(external_lzma | ||
INTERFACE | ||
LzmaLib | ||
) |
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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
add_library(external_openal INTERFACE IMPORTED GLOBAL) | ||
|
||
target_include_directories(external_openal SYSTEM | ||
INTERFACE | ||
${libs_loc}/openal-soft/include | ||
) | ||
|
||
target_link_directories(external_openal | ||
INTERFACE | ||
${libs_loc}/openal-soft/build/$<IF:$<CONFIG:Debug>,Debug,Release> | ||
) | ||
|
||
target_link_libraries(external_openal | ||
INTERFACE | ||
OpenAL32 | ||
) |
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
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
add_library(external_opus INTERFACE IMPORTED GLOBAL) | ||
|
||
target_include_directories(external_opus SYSTEM | ||
INTERFACE | ||
${libs_loc}/opus/include | ||
) | ||
|
||
target_link_directories(external_opus | ||
INTERFACE | ||
${libs_loc}/opus/win32/VS2015/Win32/$<IF:$<CONFIG:Debug>,Debug,Release> | ||
) | ||
|
||
target_link_libraries(external_opus | ||
INTERFACE | ||
opus | ||
) |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
add_library(external_zlib INTERFACE IMPORTED GLOBAL) | ||
|
||
target_include_directories(external_zlib SYSTEM | ||
INTERFACE | ||
${libs_loc}/zlib | ||
${libs_loc}/zlib/contrib/minizip | ||
) | ||
|
||
if (WIN32) | ||
target_compile_definitions(external_zlib | ||
INTERFACE | ||
ZLIB_WINAPI | ||
) | ||
endif() | ||
|
||
target_link_directories(external_zlib | ||
INTERFACE | ||
${libs_loc}/zlib/contrib/vstudio/vc14/x86/ZlibStat$<IF:$<CONFIG:Debug>,Debug,ReleaseWithoutAsm> | ||
) | ||
|
||
target_link_libraries(external_zlib | ||
INTERFACE | ||
zlibstat | ||
) |
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
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