Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Initial commit
- Loading branch information
0 parents
commit 6a33e1e
Showing
5 changed files
with
95 additions
and
0 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| CMakeCache.txt | ||
| CMakeFiles | ||
| Makefile | ||
| cmake_install.cmake | ||
| install_manifest.txt | ||
| *.swp | ||
| *.o | ||
| bin/ | ||
| test/ | ||
| build/ | ||
| .lvimrc |
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,20 @@ | ||
| # - Find wlc | ||
| # Find the wlc libraries | ||
| # | ||
| # This module defines the following variables: | ||
| # WLC_FOUND - True if wlc is found | ||
| # WLC_LIBRARIES - wlc libraries | ||
| # WLC_INCLUDE_DIRS - wlc include directories | ||
| # WLC_DEFINITIONS - Compiler switches required for using wlc | ||
| # | ||
|
|
||
| find_package(PkgConfig) | ||
| pkg_check_modules(PC_WLC QUIET wlc) | ||
| find_path(WLC_INCLUDE_DIRS NAMES wlc/wlc.h HINTS ${PC_WLC_INCLUDE_DIRS}) | ||
| find_library(WLC_LIBRARIES NAMES wlc HINTS ${PC_WLC_LIBRARY_DIRS}) | ||
|
|
||
| set(WLC_DEFINITIONS ${PC_WLC_CFLAGS_OTHER}) | ||
|
|
||
| include(FindPackageHandleStandardArgs) | ||
| find_package_handle_standard_args(wlc DEFAULT_MSG WLC_LIBRARIES WLC_INCLUDE_DIRS) | ||
| mark_as_advanced(WLC_LIBRARIES WLC_INCLUDE_DIRS) |
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,19 @@ | ||
| # - Find XKBCommon | ||
| # Once done, this will define | ||
| # | ||
| # XKBCOMMON_FOUND - System has XKBCommon | ||
| # XKBCOMMON_INCLUDE_DIRS - The XKBCommon include directories | ||
| # XKBCOMMON_LIBRARIES - The libraries needed to use XKBCommon | ||
| # XKBCOMMON_DEFINITIONS - Compiler switches required for using XKBCommon | ||
|
|
||
| find_package(PkgConfig) | ||
| pkg_check_modules(PC_XKBCOMMON QUIET xkbcommon) | ||
| find_path(XKBCOMMON_INCLUDE_DIRS NAMES xkbcommon/xkbcommon.h HINTS ${PC_XKBCOMMON_INCLUDE_DIRS}) | ||
| find_library(XKBCOMMON_LIBRARIES NAMES xkbcommon HINTS ${PC_XKBCOMMON_LIBRARY_DIRS}) | ||
|
|
||
| set(XKBCOMMON_DEFINITIONS ${PC_XKBCOMMON_CFLAGS_OTHER}) | ||
|
|
||
| include(FindPackageHandleStandardArgs) | ||
| find_package_handle_standard_args(XKBCOMMON DEFAULT_MSG XKBCOMMON_LIBRARIES XKBCOMMON_INCLUDE_DIRS) | ||
| mark_as_advanced(XKBCOMMON_LIBRARIES XKBCOMMON_INCLUDE_DIRS) | ||
|
|
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,39 @@ | ||
| cmake_minimum_required(VERSION 2.8.5) | ||
| project(sway C) | ||
| set(CMAKE_C_FLAGS "-g") | ||
| set(CMAKE_RUNTIME_OUTPUT_DIRECTORY "bin/") | ||
| add_definitions("-Wall") | ||
| set(CMAKE_BUILD_TYPE Debug) | ||
| set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} ${PROJECT_SOURCE_DIR}/CMake) | ||
|
|
||
| find_package(XKBCommon REQUIRED) | ||
|
|
||
| if (UNIX) | ||
| find_library(DL_LIBRARY dl) | ||
| mark_as_advanced(DL_LIBRARY) | ||
| if (NOT DL_LIBRARY) | ||
| message(FATAL_ERROR "libdl is needed on unix systems") | ||
| endif () | ||
| endif (UNIX) | ||
|
|
||
| FILE(GLOB sources ${PROJECT_SOURCE_DIR}/sway/*.c) | ||
|
|
||
| include_directories( | ||
| ${WLC_INCLUDE_DIRS} | ||
| sway/ | ||
| ) | ||
|
|
||
| add_executable(sway | ||
| ${sources} | ||
| ) | ||
|
|
||
| target_link_libraries(sway | ||
| ${WLC_LIBRARIES} | ||
| ${XKBCOMMON_LIBRARIES} | ||
| ${DL_LIBRARY} | ||
| ) | ||
|
|
||
| INSTALL( | ||
| TARGETS sway | ||
| RUNTIME DESTINATION bin | ||
| ) |
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,6 @@ | ||
| #include <stdio.h> | ||
|
|
||
| int main() { | ||
| printf("Hello world\n"); | ||
| return 0; | ||
| } |