forked from chidiwilliams/whisper.cpp
-
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.
cmake : create solution folders (ggerganov#2004)
* Create solution folders in the CMake build. * Fixed non-SDL2 build. * Fixed emscripten build.
- Loading branch information
Showing
3 changed files
with
38 additions
and
1 deletion.
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
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,7 +1,10 @@ | ||
add_subdirectory(libwchess) | ||
set_target_properties(wchess-core PROPERTIES FOLDER "libs") | ||
|
||
if (EMSCRIPTEN) | ||
add_subdirectory(wchess.wasm) | ||
set_target_properties(wchess.wasm PROPERTIES FOLDER "libs") | ||
else() | ||
add_subdirectory(wchess.cmd) | ||
set_target_properties(wchess PROPERTIES FOLDER "libs") | ||
endif() |