Skip to content

Commit

Permalink
Small fixes: platform name, cmake warning (google#466)
Browse files Browse the repository at this point in the history
- Add "Android" platform name
- Remove the cmake version line from timeline_semaphore it was a
relatively new project
  • Loading branch information
apazylbe authored May 21, 2024
1 parent 212eefe commit e0c7512
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 0 additions & 1 deletion projects/timeline_semaphore/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)

project(timeline_semaphore)

Expand Down
2 changes: 2 additions & 0 deletions src/ppx/platform.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@ const char* Platform::GetPlatformString()
return "Linux";
#elif defined(PPX_MSW)
return "Windows";
#elif defined(PPX_ANDROID)
return "Android";
#endif
return "<unknown platform>";
}
Expand Down

0 comments on commit e0c7512

Please sign in to comment.