Fossil

Check-in [ad12f35c]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Adjust include directories list to pick up autoconfig.h
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | cmake-ide
Files: files | file ages | folders
SHA3-256: ad12f35c98ac6ee3c8db23b76be051ee0a132cda69713ffd5ad444305268b11b
User & Date: ashepilko 2018-08-07 17:55:30.543
Context
2018-08-08
01:27
Fix the MSVC specific link flags. ... (check-in: 27c4e7b0 user: ashepilko tags: cmake-ide)
2018-08-07
17:55
Adjust include directories list to pick up autoconfig.h ... (check-in: ad12f35c user: ashepilko tags: cmake-ide)
2018-08-04
11:08
Pass the build command in verbatim mode. ... (check-in: 28094475 user: ashepilko tags: cmake-ide)
Changes
Unified Diff Show Whitespace Changes Patch
Changes to CMakeLists.txt.
94
95
96
97
98
99
100

101
102
103
104
105
106
107

    "${fossil_BUILD_DIR}/*.[h]"
    #"${fossil_BUILD_DIR}/main_.c"
)

include_directories(
    "${fossil_BUILD_DIR}"

    "${PROJECT_SOURCE_DIR}/src"
    "${PROJECT_SOURCE_DIR}"
)

add_custom_target(project-sources ALL
    WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
    SOURCES ${project_sources_DIRS} ${project_sources_FILES}







>







94
95
96
97
98
99
100
101
102
103
104
105
106
107
108

    "${fossil_BUILD_DIR}/*.[h]"
    #"${fossil_BUILD_DIR}/main_.c"
)

include_directories(
    "${fossil_BUILD_DIR}"
    "${fossil_BINARY_DIR}"
    "${PROJECT_SOURCE_DIR}/src"
    "${PROJECT_SOURCE_DIR}"
)

add_custom_target(project-sources ALL
    WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
    SOURCES ${project_sources_DIRS} ${project_sources_FILES}