Compiler/CMakeLists.txt

46 lines
1.6 KiB
CMake
Raw Permalink Normal View History

2024-02-14 06:49:36 -08:00
cmake_minimum_required(VERSION 3.18.4)
project(Compiler C CXX)
if (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Windows")
set(IS_OS_WINDOWS TRUE)
set(USER_HOME_DIRECTORY $ENV{USERPROFILE})
message("Building for the Windows operating system.")
elseif (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Linux")
set(IS_OS_LINUX TRUE)
set(USER_HOME_DIRECTORY $ENV{HOME})
add_compile_options(-Wno-stringop-overflow)
message("Building for the Linux operating system.")
elseif (${CMAKE_HOST_SYSTEM_NAME} STREQUAL "Darwin")
set(IS_OS_MAC TRUE)
set(USER_HOME_DIRECTORY $ENV{HOME})
message("Building for the Mac operating system.")
endif ()
if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "AMD64" OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64")
message("Building for AMD64 architecture.")
set(IS_ARCH_AMD64 TRUE)
elseif ("${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "ARM64" OR "${CMAKE_SYSTEM_PROCESSOR}" STREQUAL "aarch64")
message("Building for ARM64 architecture.")
set(IS_ARCH_ARM64 TRUE)
endif ()
set(CMAKE_CXX_STANDARD 20)
add_executable(Compiler
src/ELF64_Sym.cpp include/ELF64_Sym.h
2024-02-14 18:42:04 -08:00
src/ELF64_Section.cpp include/ELF64_Section.h
src/ELF64_Program.cpp include/ELF64_Program.h
src/ELF64.cpp include/ELF64.h
src/main.cpp
)
2024-02-14 23:39:35 -08:00
target_include_directories(Compiler PRIVATE "${PROJECT_SOURCE_DIR}/include")
2024-02-14 06:49:36 -08:00
2024-02-14 15:59:41 -08:00
if (IS_OS_LINUX)
add_compile_definitions(LWE_WS_XCB)
2024-02-14 06:49:36 -08:00
endif()
target_link_directories(Compiler PRIVATE "${USER_HOME_DIRECTORY}/.local/lib")
target_include_directories(Compiler PRIVATE "${USER_HOME_DIRECTORY}/.local/include")
target_link_libraries(Compiler PRIVATE xcb xcb-cursor xcb-xfixes xcb-xinput z asound EHS)