2024-06-29 07:52:17 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2024 Stephen Seo
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* `platforms.h` is the header that determines what platform this program is
|
|
|
|
* compiled for.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Determine platform macros
|
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM_WINDOWS 1
|
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM_MAC 2
|
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM_LINUX 3
|
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM_COSMOPOLITAN 4
|
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM_UNKNOWN 0
|
|
|
|
|
|
|
|
#if defined __COSMOPOLITAN__
|
2024-06-30 06:32:17 +00:00
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM SIMPLE_ARCHIVER_PLATFORM_COSMOPOLITAN
|
2024-06-29 07:52:17 +00:00
|
|
|
#elif defined _WIN32
|
2024-06-30 06:32:17 +00:00
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM SIMPLE_ARCHIVER_PLATFORM_WINDOWS
|
2024-06-29 07:52:17 +00:00
|
|
|
#elif defined __APPLE__
|
2024-06-30 06:32:17 +00:00
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM SIMPLE_ARCHIVER_PLATFORM_MAC
|
2024-06-29 07:52:17 +00:00
|
|
|
#elif defined __linux__
|
2024-06-30 06:32:17 +00:00
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM SIMPLE_ARCHIVER_PLATFORM_LINUX
|
2024-06-29 07:52:17 +00:00
|
|
|
#else
|
2024-06-30 06:32:17 +00:00
|
|
|
#define SIMPLE_ARCHIVER_PLATFORM SIMPLE_ARCHIVER_PLATFORM_UNKNOWN
|
2024-06-29 07:52:17 +00:00
|
|
|
#endif
|