-
-
Notifications
You must be signed in to change notification settings - Fork 494
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NOTE: pkg-config case for Ogg and Vorbis isn't working. Look into it!
- Loading branch information
swagtoy
committed
Nov 5, 2024
1 parent
15733c9
commit 9c48859
Showing
3 changed files
with
17 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
project(FindLocale) | ||
|
||
add_library(FindLocale OBJECT ${PROJECT_SOURCE_DIR}/findlocale.c) | ||
set_target_properties(FindLocale PROPERTIES POSITION_INDEPENDENT_CODE ON) | ||
target_include_directories(FindLocale PUBLIC ${PROJECT_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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
project(obstack) | ||
|
||
add_library(obstack OBJECT ${PROJECT_SOURCE_DIR}/obstack.c) | ||
set_target_properties(obstack PROPERTIES POSITION_INDEPENDENT_CODE ON) | ||
target_include_directories(obstack PUBLIC ${PROJECT_SOURCE_DIR}) |